Došlo je do pogreške prilikom obrade predloška.
The following has evaluated to null or missing:
==> renderRelatedDocuments  [in template "20155#20195#3820170" at line 92, column 15]

----
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: @renderRelatedDocuments povezani_doku...  [in template "20155#20195#3820170" at line 92, column 13]
----
1<#-- HNB Article - objedinjeno.ftl --> 
2<#-- INIT --> 
3<#include "${templatesPath}/4646029" /> 
4<#include "${templatesPath}/5073020" /> 
5 
6<style> 
7    .inflacija-box {display: block; background-color: #eeeef0; padding: 15px; border-radius: 10px;} 
8    .hnb-body .article span.link {color: #c81818; text-decoration: underline;} 
9    .responsive-cuca {height: auto;width: 100%;} 
10    table.jednaka_sirina_stupaca {table-layout: fixed; width: 100%;} 
11    table.jednaka_sirina_stupaca td {width: 25%;} 
12    .hnb-body img, .hnb-body table img {width:100%;} 
13    .hnb-body table, .hnb-body table th, .hnb-body table td {border-width: 0;} 
14    .hnb-body table.border, .hnb-body table.border th, .hnb-body table.border td {border-width: 1px} 
15     
16    /* povezani sadržaj bez grida */ 
17    .related-documents header {border: 0!important;border-bottom: 1px solid #d4d4d8!important;} 
18    .related-documents ul li {border-bottom: 0!important;} 
19    .related-documents ul {border: 0!important;border-bottom: 0!important;} 
20     
21    /* responzivni iframe */ 
22    .container-iframe {position: relative; overflow: hidden; width: 100%; padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */} 
23    /* Then style the iframe to fit in the container div with full height and width */ 
24    .responsive-iframe {position: absolute; top: 0; left: 0; bottom: 0; right: 0; width: 100%; height: 100%;} 
25     
26    /* slike viceguverneri */ 
27    .hnb-body img.vice {width:138px; height:168px;} 
28 
29</style> 
30 
31<#if article.getAvailableLanguageIds()?seq_contains(locale) > 
32 
33    <#assign tags = .vars['reserved-article-asset-tag-names'].data /> 
34 
35    <#assign title = .vars['reserved-article-title'].data /> 
36 
37    <div class="article"> 
38        <h2 class="article-title">${title}</h2> 
39        <div class="article-action-icons"> 
40            <div class="attributes" style="text-align:left;"> 
41                <span class="displayDate">${languageUtil.get(locale,"templates.article.publishDate")}: ${displayDate} </span> 
42                <#if modifiedDate??> 
43                    <span class="separator"></span> 
44                    <span class="modifiedDate">${languageUtil.get(locale,"templates.article.modifiedDate")}: ${modifiedDate} </span> 
45                </#if> 
46                <#if eventDateStart?? && eventDateEnd??> 
47                    <span class="separator"></span> 
48                    <#if eventDateStart == eventDateEnd> 
49                        <span>${languageUtil.get(locale,"templates.article.eventDateDuration")}: ${eventDateStart}</span> 
50                     <#else> 
51                         <span>${languageUtil.get(locale,"templates.article.eventDateDuration")}: ${eventDateStart} - ${eventDateEnd}</span> 
52                    </#if> 
53 
54                </#if> 
55            </div> 
56            <#include "${templatesPath}/4646139" /> 
57            <div class="clear"></div> 
58        </div> 
59        <#if autor_ime?? && autor_ime.getData()?has_content> 
60            <#if autor_slika.getData()?has_content> 
61                <div class="row pad-nq-t-24 pad-nq-b-24 margo-b-8"> 
62                    <div class="nr-1-5"> 
63                        <img alt="${autor_ime.getData()}" title="${autor_ime.getData()}" src="${autor_slika.getData()}" /> 
64                    </div> 
65                </div> 
66            </#if> 
67            <#if autor_slika.autor_opis.getData()?has_content> 
68                <div class="row pad-nq-t-24 pad-nq-b-24 margo-b-8"> 
69                    <div class="nr-1-1"> 
70                        <div class="margo-b-8"><h5><em>${autor_slika.autor_opis.getData()}</em></h5></div> 
71                        <hr/> 
72                    </div> 
73                </div> 
74            </#if> 
75        </#if> 
76        <div class="article-content"> 
77            <#if clanak_slika?? && clanak_slika.getData()?has_content> 
78                <div class="margo-b-16"> 
79                    <img class="responsive-cuca" alt="${title}" title="${title}" src="${clanak_slika.getData()}"  /> 
80                    <#if clanak_slika.clanak_slika_potpis?? && clanak_slika.clanak_slika_potpis.getData()?has_content> 
81                        <h5><em>${clanak_slika.clanak_slika_potpis.getData()}</em></h5> 
82                    </#if> 
83                </div> 
84            </#if> 
85            <#if clanak_sazetak?? && clanak_sazetak.getData()?has_content> 
86                <div class="summary">${clanak_sazetak.getData()}</div> 
87            </#if> 
88            <div class="article-text"> 
89                ${clanak_tekst.getData()} 
90            </div> 
91 
92            <@renderRelatedDocuments povezani_dokumenti_naziv = povezani_dokumenti_naziv!'' displayDocumentSize=false /> 
93            <@getArticleTreePathDocuments article = article!'' /> 
94 
95            <#-- YourEurope stuff --> 
96            <#assign prikaziYoureEuropeForm = getterUtil.getBoolean((youreurope.getData())!null) /> 
97 
98            <#if prikaziYoureEuropeForm==true > 
99                <#include "${templatesPath}/3688709" /> 
100            </#if> 
101        </div> 
102    </div> 
103 
104<#else> 
105    <div class="no-translation">${languageUtil.get(locale,"templates.locale.contentNotAvailable")}</div> 
106</#if>