Notificaciones por estado choco
Gerencia Departamental Colegiada Chocó
Se ha producido un error al procesar la plantilla.
The following has evaluated to null or missing: ==> viewURL [in template "20101#20127#495537" at line 70, column 35] ---- 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: ${viewURL} [in template "20101#20127#495537" at line 70, column 33] ----
1<style>
2 .table {
3 border-radius: 10px;
4 border: 1px solid #D5D8E5;
5 }
6
7 .table thead tr th {
8 background-color: #E9ECF8;
9 color: var(--secondary) !important;
10 }
11
12 .table-striped tbody tr:nth-of-type(odd) td {
13 background-color: #F8FAFF;
14 }
15
16 .page-item {
17 background-color: var(--primary);
18 border-radius: 0px;
19 border: 0.0625rem solid transparent;
20 padding: 0.4375rem 0.9375rem;
21 font-weight: 600;
22 line-height: 1.5;
23 }
24
25 .page-item a {
26 color: var(--white);
27 }
28
29 .lfr-pagination-buttons .first, .lfr-pagination-buttons .last {
30 background-color: var(--secondary);
31 }
32
33 @media (max-width: 576px) and (orientation: portrait) {
34 .taglib-page-iterator .lfr-pagination-buttons > li {
35 width: 47%;
36 }
37
38 }
39</style>
40
41<div class="table-responsive">
42 <table class="table table-hover table-striped">
43 <thead>
44 <tr>
45 <th scope="col"> Título </th>
46 <th scope="col"> Fecha Publicación </th>
47 <th scope="col"> Fecha Expiración </th>
48 <th scope="col"> Número de visualizaciones </th>
49 </tr>
50 </thead>
51 <tbody>
52 <#if entries?has_content>
53 <#list entries as curEntry>
54 <#assign viewUrl="" />
55 <#attempt>
56 <#assign
57 assetRenderer = curEntry.getAssetRenderer()
58 viewURL = assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, curEntry)
59 />
60
61 <#if assetLinkBehavior != "showFullContent" && viewURL?has_content>
62 <#assign viewURL = assetRenderer.getURLViewInContext(renderRequest, renderResponse, viewURL)!assetPublisherHelper.getAssetViewURL(renderRequest, renderResponse, curEntry) />
63 </#if>
64
65 <#recover>
66 <#assign viewUrl="" />
67 </#attempt>
68 <tr>
69 <td>
70 <p><a href="${viewURL}">${curEntry.getTitle(locale)}</a></p>
71 </td>
72 <td>
73 <p>${curEntry.getPublishDate()?string["dd-MM-yyyy"]}</p>
74 </td>
75 <td>
76 <#if curEntry.getExpirationDate()?has_content>
77 <p>${curEntry.getExpirationDate()?string["dd-MM-yyyy"]}</p>
78 <#else>
79 <p></p>
80 </#if>
81
82 </td>
83 <td>${curEntry.getViewCount()}</td>
84 </tr>
85 </#list>
86 </#if>
87 </tbody>
88 </table>
89</div>
— 20 Resultados por página