Acessar - DGO
An error occurred while processing the template.
The following has evaluated to null or missing: ==> proveedor.modal [in template "20101#20128#328135" at line 85, column 68] ---- 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 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: ${proveedor.modal.modalTitle.getData()} [in template "20101#20128#328135" at line 85, column 66] ----
1<style>
2 #modalProveedor .modal-content .modal-body .modal-body-content {
3 max-width: 460px;
4 margin-left: auto;
5 margin-right: auto;
6 }
7 #modalProveedor .modal-content {
8 max-width: 33.5rem;
9 background-color: #000;
10 }
11 #modalProveedor .modal-content .modal-header {
12 border: none;
13 height: 6rem;
14 }
15 #modalProveedor .modal-content .modal-header .modal-title {
16 font-size: 16px;
17 max-width: 59%;
18 white-space: normal;
19 margin-top: 15px;
20 }
21 #modalProveedor .modal-content .nomeProveedor {
22 color: #A3A3A3;
23 text-align: center;
24 margin-top: 4px;
25 }
26 #modalProveedor .modal-content .modal-body .modal-body-content .content_channels {
27 gap: 4rem;
28 }
29 #extraChannelsSection a {
30 width: 125px;
31 }
32 #modalProveedor .channel_list_circle {
33 margin: auto;
34 max-width: 100%;
35 width: 5rem;
36 height: 5rem;
37 }
38 #modalProveedor .modal-content .modal-body {
39 overflow-y: auto;
40 max-height: 325px;
41 }
42 #modalProveedor .modal-content .modal-body::-webkit-scrollbar-track {
43 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
44 border-radius: 10px;
45 background-color: #3e3e3e;
46 margin: 24px 0;
47 }
48 #modalProveedor .modal-content .modal-body::-webkit-scrollbar {
49 width: 6px;
50 background-color: transparent;
51 margin: 24px 5px;
52 }
53 #modalProveedor .modal-content .modal-body::-webkit-scrollbar-thumb {
54 border-radius: 10px;
55 -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
56 background-color: #00ACEC;
57 margin: 24px 0;
58 }
59 @media (max-width:471px){
60 #modalProveedor .modal-content .modal-header .modal-title {
61 max-width: 194px;
62 }
63 #modalProveedor .modal-content .modal-header {
64 height: 8rem;
65 }
66 #modalProveedor .modal-content .modal-body {
67 max-height: 285px;
68 }
69 #modalProveedor .modal-content .modal-body .modal-body-content {
70 max-width: 337px;
71 }
72 #modalProveedor .modal-content .modal-header .close {
73 align-self: stretch;
74 margin-top: 27px;
75 }
76 }
77</style>
78<div class="modal modal-dtvgo fade modal-dtvgo--scrollable" id="modalProveedor" tabindex="-1" role="dialog"
79 aria-labelledby="modalProveedorLabel" aria-hidden="true"
80 style="display:none;">
81
82 <div class="modal-dialog modal-dialog-centered" role="document">
83 <div class="modal-content">
84 <div class="modal-header text-color-white">
85 <h5 class="modal-title" id="modalProveedorLabel">${proveedor.modal.modalTitle.getData()}</h5>
86 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
87 <span aria-hidden="true">×</span>
88 </button>
89 </div>
90 <div class="modal-body">
91 <div class="modal-body-content">
92 <div id="extraChannelsSection" class="content_channels">
93 <#if proveedor.modal.operatorLink.getSiblings()?has_content>
94 <#list proveedor.modal.operatorLink.getSiblings() as cur_proveedor_modal_operatorLink>
95 <a href="${cur_proveedor_modal_operatorLink.getData()}" data-selfcare="${cur_proveedor_modal_operatorLink.OperatorSelfcareURL.getData()}">
96 <div class="channel_list_circle">
97 <#if (cur_proveedor_modal_operatorLink.operatorImage.getData())?? && cur_proveedor_modal_operatorLink.operatorImage.getData() != "">
98 <img alt="${cur_proveedor_modal_operatorLink.operatorImage.getAttribute("alt")}" data-fileentryid="${cur_proveedor_modal_operatorLink.operatorImage.getAttribute("fileEntryId")}" src="${cur_proveedor_modal_operatorLink.operatorImage.getData()}" />
99 </#if>
100 </div>
101 <div class="nomeProveedor">
102 ${cur_proveedor_modal_operatorLink.operatorText123.getData()}
103 </div>
104 </a>
105 </#list>
106 </#if>
107 </div>
108 </div>
109 </div>
110 </div>
111 </div>
112</div>