Tiềm năng triển vọng - Huyện Cồn Cỏ

Có lỗi xảy ra trong quá trình xử lý biểu mẫu.
The following has evaluated to null or missing: ==> article.viewable [in template "10131#10164#2094637" at line 35, column 88] ---- 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: ${article.viewable} [in template "10131#10164#2094637" at line 35, column 86] ----
1<link href="/3cms/common/asset/hailang/css/jquery.rating.css" media="screen" rel="stylesheet" type="text/css" />
2
3<div class="col-sm-12 col-md-12 fix-more-padding">
4
5 <#list catalogues as catalogue>
6 <#assign
7 size = articleService.countArticles(catalogue.catalogueid, organizationId)
8 pageHolder = freemakerUtil.getPageHolder(size, number_page, currentPage)
9 articles = articleService.getArticles(
10 catalogue.catalogueid, organizationId,
11 pageHolder.getStart(), (pageHolder.getStart() + pageHolder.getNumberObjects()),
12 numberArticle, numberRelation)
13 articlesMain = articles[0]
14 articlesRelation = articles[1]
15 >
16 <div class="border-bottom-news"></div>
17 <#list articlesMain as article>
18 <div class="border-bottom-news">
19 <div class="news_column panel panel-default newsdetail">
20 <div class="panel-body">
21 <h1 align="justify" class="title margin-bottom-lg">${freemakerUtil.removeHTML(localization.getLocalization(article.title_vn, "${languageId}"), 150)}</h1>
22 <div class="row margin-bottom-lg newsdetailmetatop">
23 <div class="col-md-6">
24 <span class="h5"><i class="fa fa-clock-o" aria-hidden="true"></i>
25 <#if languageId == "vi_VN">
26 <#if article.startdatetime??>
27 ${dateFormat.format(article.createdatetime, "dd/MM/yyyy")}
28 </#if>
29 </#if>
30
31 <#if languageId != "vi_VN">
32 ${dateFormat.format(article.createdatetime, "dd/MM/yyyy")}
33 </#if>
34 </span>
35 <span class="h5"><i class="fa fa-eye" aria-hidden="true"></i>${article.viewable}</span>
36 <span class="h5"><i class="fa fa-comment-o" aria-hidden="true"></i>0</span>
37 </div>
38 <div class="col-md-6">
39
40 </div>
41 </div>
42 <div class="clearfix">
43 <div class="hometext m-bottom">
44 <div align="justify">${article.summarycontent_vn}</div>
45 </div>
46 <#if article.article?has_content && article.imagename?length !=0>
47
48 <figure class="article center">
49 <div style="text-align:center;">
50 <img src="/o/3cmsnew-portlet/ViewImage?imagename=${article.imagename}" width="600px"
51 class="imgDetailNew" />
52 </div>
53 <#if article.imagecomment_en?has_content>
54 <figcaption>${article.imagecomment_en}</figcaption>
55 </#if>
56 </figure>
57 </#if>
58
59 </div>
60 <div id="news-bodyhtml" class="bodytext margin-bottom-lg">
61 <div style="text-align: justify;">${freemakerUtil.removeHTML(localization.getLocalization(article.content_vn, "${languageId}"), 10000)}
62 </div>
63 </div>
64
65 </div>
66 </div>
67 </div>
68 </#list>
69 </#list>
70</div>