Contenido General: Cartas Circulares
An error occurred while processing the template.
The following has evaluated to null or missing: ==> claseDoc [in template "33501#33537#156791" at line 54, column 86] ---- 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: ${claseDoc} [in template "33501#33537#156791" at line 54, column 84] ----
1<section class="bg-grey-5 pt-8 pb-14 mb-14">
2 <div class="container-corp">
3 <#if Titulo?? >
4 <h2 class="second-title f-lato-regular c-blue-2 ">${Titulo.getData()}</h2>
5 </#if>
6 <div class="py-8">
7 <dl>
8 <#if Informacion??>
9 <dt class="pr-1 d-inline-block">
10 <h5 class="fifth-title f-lato-bold c-blue-2 ">Antecedentes:</h5>
11 </dt>
12
13 <dd class="d-inline-block">
14 <h5 class="fifth-title f-lato-regular c-blue-2">${Informacion.Antecedentes.getData()}</h5>
15 </dd>
16 </#if>
17 </dl>
18 <dl>
19 <#if Informacion??>
20 <dt class="pr-1 d-inline-block">
21 <h5 class="fifth-title f-lato-bold c-blue-2">Fecha:</h5>
22 </dt>
23 <dd class="d-inline-block">
24 <h5 class="fifth-title f-lato-regular c-blue-2">${Informacion.Fecha.getData()}</h5>
25 </dd>
26 </#if>
27 </dl>
28 <dl>
29 <#if Informacion??>
30 <dt class="pr-1 d-inline-block">
31 <h5 class="fifth-title f-lato-bold c-blue-2">N° Bancos:</h5>
32 </dt>
33 <dd class="d-inline-block">
34 <h5 class="fifth-title f-lato-regular c-blue-2">${Informacion.NBancos.getData()}</h5>
35 </dd>
36 </#if>
37 </dl>
38 </div>
39
40 <div class="row">
41 <#if ArchivosAdjuntos.getSiblings()?has_content>
42 <#list ArchivosAdjuntos.getSiblings() as datos>
43 <div class="col-md-4 col-12">
44 <#if datos.ArchivosDescargables.getData()?has_content && datos.ArchivosDescargables.getData()?contains("pdf")>
45 <#assign claseDoc = "linkdoc-pdf" />
46 <#elseif datos.ArchivosDescargables.getData()?has_content && datos.ArchivosDescargables.getData()?contains("xlsx")>
47 <#assign claseDoc = "linkdoc-xls" />
48 <#elseif datos.ArchivosDescargables.getData()?has_content && datos.ArchivosDescargables.getData()?contains("xls")>
49 <#assign claseDoc = "linkdoc-xls" />
50 <#elseif datos.ArchivosDescargables.getData()?has_content && datos.ArchivosDescargables.getData()?contains("docx")>
51 <#assign claseDoc = "linkdoc-doc" />
52 </#if>
53 <a href="${datos.ArchivosDescargables.getData()}" class="linkdoc mb-4" data-senna-off="true" target="_blank" title="${datos.NombreArchivo.getData()}" <#if datos.analytics??> onclick="${datos.analytics.getData()}" </#if> >
54 <div class="linkdoc-colimg ${claseDoc}">
55 </div>
56 <div class="linkdoc-coltext">
57 <#assign textoBoton = datos.NombreArchivo.getData() />
58 <#assign cantidadTexto = textoBoton?length />
59 <#if cantidadTexto gt 125 >
60 <p class="linkdoc-text">${textoBoton?left_pad(120)[0..*120]}...</p>
61 <#else>
62 <p class="linkdoc-text">${textoBoton}</p>
63 </#if>
64 </div>
65 </a>
66 </div>
67 </#list>
68 </#if>
69 </div>
70 </div>
71</section>
.