Ventes
Une erreur s'est produite lors du traitement du gabarit.
The following has evaluated to null or missing: ==> cur_name.mail.label [in template "20116#20152#GUEST.TEMPLATE.GRID_CONTACTS" at line 20, column 15] ---- Tip: It's the step after the last dot that caused this error, not those before it. ---- Tip: If the failing expression is known to be 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: ${cur_name.mail.label.getData()} [in template "20116#20152#GUEST.TEMPLATE.GRID_CONTACTS" at line 20, column 13] ----
1<div class="grid grid-contacts">
2 <#if name.getSiblings()?has_content>
3 <#list name.getSiblings() as cur_name>
4 <div class="grid-contacts__cell">
5 <#if cur_name.getData()?has_content>
6 <div class="grid-contacts__title">${cur_name.getData()}</div>
7 </#if>
8 <#if cur_name.description.getData()?has_content>
9 <div class="grid-contacts__description">${cur_name.description.getData()}</div>
10 </#if>
11 <#if cur_name.phone.getData()?has_content>
12 <a class="grid-contacts__phone" href="tel:${cur_name.phone.getData()}">
13 <i class="key-phone-icon"></i>
14 ${cur_name.phone.getData()}
15 </a>
16 </#if>
17 <#if cur_name.mail.getData()?has_content>
18 <a class="grid-contacts__mail" href="mailTo:${cur_name.mail.getData()}">
19 <i class="key-letter-icon"></i>
20 ${cur_name.mail.label.getData()}
21 </a>
22 </#if>
23 <#if (cur_name.detailPageText.getData())?has_content>
24 <a class="btn btn-primary grid-contacts__detail-link"
25 href="${cur_name.detailPageText.detailPageLink.getFriendlyUrl()}"
26 >
27 ${cur_name.detailPageText.getData()}
28 </a>
29 </#if>
30 </div>
31 </#list>
32 </#if>
33</div>