LOCATIONS - Brinks Korea
Brink's, Rm.1122 Changgang Bldg. 86 Mapo-Daero Mapo-gu, Seoul, Korea
Copyright © 2024, Brink's Incorporated.
All rights reserved. Terms of use.
All rights reserved. Terms of use.
The following has evaluated to null or missing: ==> htmlUtil.escape(objectValuesMap["countryName_i18n"][locale]) [in template "20096#20121#123086" at line 13, column 49] ---- Tip: If the failing expression is known to legally refer to something that's sometimes null or missing, either specify a default value like myOptionalVar!myDefault, or use <#if myOptionalVar??>when-present<#else>when-missing</#if>. (These only cover the last step of the expression; to cover the whole expression, use parenthesis: (myOptionalVar.foo)!myDefault, (myOptionalVar.foo)?? ---- ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign name = htmlUtil.escape(object... [in template "20096#20121#123086" at line 13, column 33] ----
1<#if entries?has_content>
2 <h3 class="title-small">Select a Location</h3>
3 <div class="row">
4 <#assign
5 numColumns = 6
6 numEntries = entries?size
7 numEntriesPerColumn = (numEntries/numColumns)?ceiling
8 >
9
10 <#assign brinksCountriesList = [] />
11 <#list entries as curEntry>
12 <#assign objectValuesMap=objectEntryLocalService.getValues(curEntry.title?number) />
13 <#assign name = htmlUtil.escape(objectValuesMap["countryName_i18n"][locale])>
14 <#assign url = htmlUtil.escape(objectValuesMap["countryUrl_i18n"][locale])>
15 <#assign brinksCountriesList = brinksCountriesList + [{"countryName":name, "countryUrl":url}] />
16 </#list>
17
18
19 <#list brinksCountriesList?sort_by("countryName") as curEntry>
20 <#if (curEntry?counter)%numEntriesPerColumn == 1>
21 <div class="col-lg-2 col-md-3 col-sm-6 col-12">
22 <ul class="nobullets">
23 </#if>
24 <li><a href="${curEntry.countryUrl}">${curEntry.countryName}</a></li>
25
26 <#if (curEntry?counter)%numEntriesPerColumn == 0 || curEntry?is_last>
27 </ul>
28 </div>
29 </#if>
30 </#list>
31 </div>
32</#if>