HOME_CEINIK
Events
-
An error occurred while processing the template.
The string doesn't match the expected date/time/date-time format. The string to parse was: "04/05/2016, null:null". The expected format was: "dd/MM/yyyy, HH:mm". The nested reason given follows: Unparseable date: "04/05/2016, null:null" ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign dateEnd = (dateEndAll?datetim... [in template "13993886" at line 218, column 57] - Reached through: #include "${templatesPath}/" + "${tem... [in template "10112#522485#1619242" at line 16, column 1] ----
1<#assign ddmTemplateLocalService = serviceLocator.findService("com.liferay.dynamic.data.mapping.service.DDMTemplateLocalService") >
2<#assign globalGroupId = themeDisplay.getCompanyGroupId() />
3<#assign lisTemplates = ddmTemplateLocalService.getTemplatesByGroupId(globalGroupId) >
4<#assign nombreTpl = "event-comun">
5<#list lisTemplates as template >
6 <#if validator.isNotNull(locale) >
7 <#assign templateName = template.getName(locale ) >
8 <#else>
9 <#assign templateName = template.getNameCurrentValue() >
10 </#if>
11 <#if templateName == nombreTpl >
12 <#assign templateKey = template.getTemplateKey() >
13 </#if>
14</#list>
15
16<#include "${templatesPath}/" + "${templateKey}" />
17
18 <div class="event">
19 <p>
20 <#-- Hasta nuevo aviso no se pinta el "Titulo de la comunicacin"
21 <#if hayComTitle?? && (hayComTitle?c)?boolean >
22 <#assign preTitle = '<span class="communication">' + comTitle + '</span>' >
23 <span class="pretitle">${preTitle}</span> -
24 </#if>
25 -->
26 <#if title?? >
27 ${title}
28 </#if>
29 </p>
30 <p><small>
31 <#-- Si hay fecha de inicio pero no de fin se pinta la fecha de inicio y la hora de fin. Tampoco se pinta el "Desde". -->
32 <#if dateStartStr?? && (!dateEndStr?? || dateEndStr == "") >
33 <#if !dateShowReduced >
34 <span class="date">
35 ${ dateStartStr }
36 <#if dateEndHourStr?? && dateEndMinStr?? >
37 - ${ dateEndHourStr }:${ dateEndMinStr }
38 </#if>
39 </span>
40 <#else>
41 <span class="date"> ${ dateStartStr }</span>
42 </#if>
43 </#if>
44
45 <#-- Si hay fecha de inicio y de fin se pintan -->
46 <#if dateStartStr?? && dateEndStr?? && dateEndStr != "" >
47 <#if !dateShowReduced >
48 <span class="date">
49 <#-- Si hay hora de fin hay que pintar una coma dentro de la fecha para que no meta un espacio en blanco por detras -->
50 <#if dateStartHourStr?? && dateStartMinStr??>
51 ${ dateStartReduced } - ${ dateEndReduced + ","}
52 <#else>
53 ${ dateStartReduced } - ${ dateEndReduced }
54 </#if>
55 <#-- Si hay hora de inicio y de fin se pintan -->
56 <#if dateStartHourStr?? && dateStartMinStr?? && dateEndHourStr?? && dateEndMinStr?? >
57 ${ dateStartHourStr }:${ dateStartMinStr } - ${ dateEndHourStr }:${ dateEndMinStr }
58 <#-- Si solo hay hora de inicio se pinta. Si solo hay de fin no -->
59 <#elseif dateStartHourStr?? && dateStartMinStr??>
60 ${ dateStartHourStr }:${ dateStartMinStr }
61 </#if>
62 </span>
63 <#else>
64 <span class="date">
65 ${ dateStartReduced } - ${ dateEndReduced }
66 </span>
67 </#if>
68 </#if>
69
70 <#-- LOCALIZACION -->
71 <@upvlibs.VocabFormatCategoriesSummary vocabularyName="Kokalekuak"/>
72 <#assign localizationSummary = upvlibs.catStringSummary >
73 <#if (localizationSummary?? && localizationSummary?has_content) >
74 <#assign lastComma = localizationSummary?last_index_of(',')>
75 <#if (lastComma > 0)>
76 <#assign newlocalizationSummary = localizationSummary?substring(0,lastComma)>
77 <#else>
78 <#assign newlocalizationSummary = localizationSummary>
79 </#if>
80 ${newlocalizationSummary}
81 </#if>
82
83
84 </small></p>
85
86 </div>
-
An error occurred while processing the template.
The string doesn't match the expected date/time/date-time format. The string to parse was: "27/01/2016, null:null". The expected format was: "dd/MM/yyyy, HH:mm". The nested reason given follows: Unparseable date: "27/01/2016, null:null" ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign dateEnd = (dateEndAll?datetim... [in template "13993886" at line 218, column 57] - Reached through: #include "${templatesPath}/" + "${tem... [in template "10112#522485#1619242" at line 16, column 1] ----
1<#assign ddmTemplateLocalService = serviceLocator.findService("com.liferay.dynamic.data.mapping.service.DDMTemplateLocalService") >
2<#assign globalGroupId = themeDisplay.getCompanyGroupId() />
3<#assign lisTemplates = ddmTemplateLocalService.getTemplatesByGroupId(globalGroupId) >
4<#assign nombreTpl = "event-comun">
5<#list lisTemplates as template >
6 <#if validator.isNotNull(locale) >
7 <#assign templateName = template.getName(locale ) >
8 <#else>
9 <#assign templateName = template.getNameCurrentValue() >
10 </#if>
11 <#if templateName == nombreTpl >
12 <#assign templateKey = template.getTemplateKey() >
13 </#if>
14</#list>
15
16<#include "${templatesPath}/" + "${templateKey}" />
17
18 <div class="event">
19 <p>
20 <#-- Hasta nuevo aviso no se pinta el "Titulo de la comunicacin"
21 <#if hayComTitle?? && (hayComTitle?c)?boolean >
22 <#assign preTitle = '<span class="communication">' + comTitle + '</span>' >
23 <span class="pretitle">${preTitle}</span> -
24 </#if>
25 -->
26 <#if title?? >
27 ${title}
28 </#if>
29 </p>
30 <p><small>
31 <#-- Si hay fecha de inicio pero no de fin se pinta la fecha de inicio y la hora de fin. Tampoco se pinta el "Desde". -->
32 <#if dateStartStr?? && (!dateEndStr?? || dateEndStr == "") >
33 <#if !dateShowReduced >
34 <span class="date">
35 ${ dateStartStr }
36 <#if dateEndHourStr?? && dateEndMinStr?? >
37 - ${ dateEndHourStr }:${ dateEndMinStr }
38 </#if>
39 </span>
40 <#else>
41 <span class="date"> ${ dateStartStr }</span>
42 </#if>
43 </#if>
44
45 <#-- Si hay fecha de inicio y de fin se pintan -->
46 <#if dateStartStr?? && dateEndStr?? && dateEndStr != "" >
47 <#if !dateShowReduced >
48 <span class="date">
49 <#-- Si hay hora de fin hay que pintar una coma dentro de la fecha para que no meta un espacio en blanco por detras -->
50 <#if dateStartHourStr?? && dateStartMinStr??>
51 ${ dateStartReduced } - ${ dateEndReduced + ","}
52 <#else>
53 ${ dateStartReduced } - ${ dateEndReduced }
54 </#if>
55 <#-- Si hay hora de inicio y de fin se pintan -->
56 <#if dateStartHourStr?? && dateStartMinStr?? && dateEndHourStr?? && dateEndMinStr?? >
57 ${ dateStartHourStr }:${ dateStartMinStr } - ${ dateEndHourStr }:${ dateEndMinStr }
58 <#-- Si solo hay hora de inicio se pinta. Si solo hay de fin no -->
59 <#elseif dateStartHourStr?? && dateStartMinStr??>
60 ${ dateStartHourStr }:${ dateStartMinStr }
61 </#if>
62 </span>
63 <#else>
64 <span class="date">
65 ${ dateStartReduced } - ${ dateEndReduced }
66 </span>
67 </#if>
68 </#if>
69
70 <#-- LOCALIZACION -->
71 <@upvlibs.VocabFormatCategoriesSummary vocabularyName="Kokalekuak"/>
72 <#assign localizationSummary = upvlibs.catStringSummary >
73 <#if (localizationSummary?? && localizationSummary?has_content) >
74 <#assign lastComma = localizationSummary?last_index_of(',')>
75 <#if (lastComma > 0)>
76 <#assign newlocalizationSummary = localizationSummary?substring(0,lastComma)>
77 <#else>
78 <#assign newlocalizationSummary = localizationSummary>
79 </#if>
80 ${newlocalizationSummary}
81 </#if>
82
83
84 </small></p>
85
86 </div>
-
An error occurred while processing the template.
The string doesn't match the expected date/time/date-time format. The string to parse was: "03/11/2015, null:null". The expected format was: "dd/MM/yyyy, HH:mm". The nested reason given follows: Unparseable date: "03/11/2015, null:null" ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign dateEnd = (dateEndAll?datetim... [in template "13993886" at line 218, column 57] - Reached through: #include "${templatesPath}/" + "${tem... [in template "10112#522485#1619242" at line 16, column 1] ----
1<#assign ddmTemplateLocalService = serviceLocator.findService("com.liferay.dynamic.data.mapping.service.DDMTemplateLocalService") >
2<#assign globalGroupId = themeDisplay.getCompanyGroupId() />
3<#assign lisTemplates = ddmTemplateLocalService.getTemplatesByGroupId(globalGroupId) >
4<#assign nombreTpl = "event-comun">
5<#list lisTemplates as template >
6 <#if validator.isNotNull(locale) >
7 <#assign templateName = template.getName(locale ) >
8 <#else>
9 <#assign templateName = template.getNameCurrentValue() >
10 </#if>
11 <#if templateName == nombreTpl >
12 <#assign templateKey = template.getTemplateKey() >
13 </#if>
14</#list>
15
16<#include "${templatesPath}/" + "${templateKey}" />
17
18 <div class="event">
19 <p>
20 <#-- Hasta nuevo aviso no se pinta el "Titulo de la comunicacin"
21 <#if hayComTitle?? && (hayComTitle?c)?boolean >
22 <#assign preTitle = '<span class="communication">' + comTitle + '</span>' >
23 <span class="pretitle">${preTitle}</span> -
24 </#if>
25 -->
26 <#if title?? >
27 ${title}
28 </#if>
29 </p>
30 <p><small>
31 <#-- Si hay fecha de inicio pero no de fin se pinta la fecha de inicio y la hora de fin. Tampoco se pinta el "Desde". -->
32 <#if dateStartStr?? && (!dateEndStr?? || dateEndStr == "") >
33 <#if !dateShowReduced >
34 <span class="date">
35 ${ dateStartStr }
36 <#if dateEndHourStr?? && dateEndMinStr?? >
37 - ${ dateEndHourStr }:${ dateEndMinStr }
38 </#if>
39 </span>
40 <#else>
41 <span class="date"> ${ dateStartStr }</span>
42 </#if>
43 </#if>
44
45 <#-- Si hay fecha de inicio y de fin se pintan -->
46 <#if dateStartStr?? && dateEndStr?? && dateEndStr != "" >
47 <#if !dateShowReduced >
48 <span class="date">
49 <#-- Si hay hora de fin hay que pintar una coma dentro de la fecha para que no meta un espacio en blanco por detras -->
50 <#if dateStartHourStr?? && dateStartMinStr??>
51 ${ dateStartReduced } - ${ dateEndReduced + ","}
52 <#else>
53 ${ dateStartReduced } - ${ dateEndReduced }
54 </#if>
55 <#-- Si hay hora de inicio y de fin se pintan -->
56 <#if dateStartHourStr?? && dateStartMinStr?? && dateEndHourStr?? && dateEndMinStr?? >
57 ${ dateStartHourStr }:${ dateStartMinStr } - ${ dateEndHourStr }:${ dateEndMinStr }
58 <#-- Si solo hay hora de inicio se pinta. Si solo hay de fin no -->
59 <#elseif dateStartHourStr?? && dateStartMinStr??>
60 ${ dateStartHourStr }:${ dateStartMinStr }
61 </#if>
62 </span>
63 <#else>
64 <span class="date">
65 ${ dateStartReduced } - ${ dateEndReduced }
66 </span>
67 </#if>
68 </#if>
69
70 <#-- LOCALIZACION -->
71 <@upvlibs.VocabFormatCategoriesSummary vocabularyName="Kokalekuak"/>
72 <#assign localizationSummary = upvlibs.catStringSummary >
73 <#if (localizationSummary?? && localizationSummary?has_content) >
74 <#assign lastComma = localizationSummary?last_index_of(',')>
75 <#if (lastComma > 0)>
76 <#assign newlocalizationSummary = localizationSummary?substring(0,lastComma)>
77 <#else>
78 <#assign newlocalizationSummary = localizationSummary>
79 </#if>
80 ${newlocalizationSummary}
81 </#if>
82
83
84 </small></p>
85
86 </div>
-
An error occurred while processing the template.
The string doesn't match the expected date/time/date-time format. The string to parse was: "25/11/2015, null:null". The expected format was: "dd/MM/yyyy, HH:mm". The nested reason given follows: Unparseable date: "25/11/2015, null:null" ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign dateEnd = (dateEndAll?datetim... [in template "13993886" at line 218, column 57] - Reached through: #include "${templatesPath}/" + "${tem... [in template "10112#522485#1619242" at line 16, column 1] ----
1<#assign ddmTemplateLocalService = serviceLocator.findService("com.liferay.dynamic.data.mapping.service.DDMTemplateLocalService") >
2<#assign globalGroupId = themeDisplay.getCompanyGroupId() />
3<#assign lisTemplates = ddmTemplateLocalService.getTemplatesByGroupId(globalGroupId) >
4<#assign nombreTpl = "event-comun">
5<#list lisTemplates as template >
6 <#if validator.isNotNull(locale) >
7 <#assign templateName = template.getName(locale ) >
8 <#else>
9 <#assign templateName = template.getNameCurrentValue() >
10 </#if>
11 <#if templateName == nombreTpl >
12 <#assign templateKey = template.getTemplateKey() >
13 </#if>
14</#list>
15
16<#include "${templatesPath}/" + "${templateKey}" />
17
18 <div class="event">
19 <p>
20 <#-- Hasta nuevo aviso no se pinta el "Titulo de la comunicacin"
21 <#if hayComTitle?? && (hayComTitle?c)?boolean >
22 <#assign preTitle = '<span class="communication">' + comTitle + '</span>' >
23 <span class="pretitle">${preTitle}</span> -
24 </#if>
25 -->
26 <#if title?? >
27 ${title}
28 </#if>
29 </p>
30 <p><small>
31 <#-- Si hay fecha de inicio pero no de fin se pinta la fecha de inicio y la hora de fin. Tampoco se pinta el "Desde". -->
32 <#if dateStartStr?? && (!dateEndStr?? || dateEndStr == "") >
33 <#if !dateShowReduced >
34 <span class="date">
35 ${ dateStartStr }
36 <#if dateEndHourStr?? && dateEndMinStr?? >
37 - ${ dateEndHourStr }:${ dateEndMinStr }
38 </#if>
39 </span>
40 <#else>
41 <span class="date"> ${ dateStartStr }</span>
42 </#if>
43 </#if>
44
45 <#-- Si hay fecha de inicio y de fin se pintan -->
46 <#if dateStartStr?? && dateEndStr?? && dateEndStr != "" >
47 <#if !dateShowReduced >
48 <span class="date">
49 <#-- Si hay hora de fin hay que pintar una coma dentro de la fecha para que no meta un espacio en blanco por detras -->
50 <#if dateStartHourStr?? && dateStartMinStr??>
51 ${ dateStartReduced } - ${ dateEndReduced + ","}
52 <#else>
53 ${ dateStartReduced } - ${ dateEndReduced }
54 </#if>
55 <#-- Si hay hora de inicio y de fin se pintan -->
56 <#if dateStartHourStr?? && dateStartMinStr?? && dateEndHourStr?? && dateEndMinStr?? >
57 ${ dateStartHourStr }:${ dateStartMinStr } - ${ dateEndHourStr }:${ dateEndMinStr }
58 <#-- Si solo hay hora de inicio se pinta. Si solo hay de fin no -->
59 <#elseif dateStartHourStr?? && dateStartMinStr??>
60 ${ dateStartHourStr }:${ dateStartMinStr }
61 </#if>
62 </span>
63 <#else>
64 <span class="date">
65 ${ dateStartReduced } - ${ dateEndReduced }
66 </span>
67 </#if>
68 </#if>
69
70 <#-- LOCALIZACION -->
71 <@upvlibs.VocabFormatCategoriesSummary vocabularyName="Kokalekuak"/>
72 <#assign localizationSummary = upvlibs.catStringSummary >
73 <#if (localizationSummary?? && localizationSummary?has_content) >
74 <#assign lastComma = localizationSummary?last_index_of(',')>
75 <#if (lastComma > 0)>
76 <#assign newlocalizationSummary = localizationSummary?substring(0,lastComma)>
77 <#else>
78 <#assign newlocalizationSummary = localizationSummary>
79 </#if>
80 ${newlocalizationSummary}
81 </#if>
82
83
84 </small></p>
85
86 </div>
-
An error occurred while processing the template.
The string doesn't match the expected date/time/date-time format. The string to parse was: "07/10/2015, null:null". The expected format was: "dd/MM/yyyy, HH:mm". The nested reason given follows: Unparseable date: "07/10/2015, null:null" ---- FTL stack trace ("~" means nesting-related): - Failed at: #assign dateEnd = (dateEndAll?datetim... [in template "13993886" at line 218, column 57] - Reached through: #include "${templatesPath}/" + "${tem... [in template "10112#522485#1619242" at line 16, column 1] ----
1<#assign ddmTemplateLocalService = serviceLocator.findService("com.liferay.dynamic.data.mapping.service.DDMTemplateLocalService") >
2<#assign globalGroupId = themeDisplay.getCompanyGroupId() />
3<#assign lisTemplates = ddmTemplateLocalService.getTemplatesByGroupId(globalGroupId) >
4<#assign nombreTpl = "event-comun">
5<#list lisTemplates as template >
6 <#if validator.isNotNull(locale) >
7 <#assign templateName = template.getName(locale ) >
8 <#else>
9 <#assign templateName = template.getNameCurrentValue() >
10 </#if>
11 <#if templateName == nombreTpl >
12 <#assign templateKey = template.getTemplateKey() >
13 </#if>
14</#list>
15
16<#include "${templatesPath}/" + "${templateKey}" />
17
18 <div class="event">
19 <p>
20 <#-- Hasta nuevo aviso no se pinta el "Titulo de la comunicacin"
21 <#if hayComTitle?? && (hayComTitle?c)?boolean >
22 <#assign preTitle = '<span class="communication">' + comTitle + '</span>' >
23 <span class="pretitle">${preTitle}</span> -
24 </#if>
25 -->
26 <#if title?? >
27 ${title}
28 </#if>
29 </p>
30 <p><small>
31 <#-- Si hay fecha de inicio pero no de fin se pinta la fecha de inicio y la hora de fin. Tampoco se pinta el "Desde". -->
32 <#if dateStartStr?? && (!dateEndStr?? || dateEndStr == "") >
33 <#if !dateShowReduced >
34 <span class="date">
35 ${ dateStartStr }
36 <#if dateEndHourStr?? && dateEndMinStr?? >
37 - ${ dateEndHourStr }:${ dateEndMinStr }
38 </#if>
39 </span>
40 <#else>
41 <span class="date"> ${ dateStartStr }</span>
42 </#if>
43 </#if>
44
45 <#-- Si hay fecha de inicio y de fin se pintan -->
46 <#if dateStartStr?? && dateEndStr?? && dateEndStr != "" >
47 <#if !dateShowReduced >
48 <span class="date">
49 <#-- Si hay hora de fin hay que pintar una coma dentro de la fecha para que no meta un espacio en blanco por detras -->
50 <#if dateStartHourStr?? && dateStartMinStr??>
51 ${ dateStartReduced } - ${ dateEndReduced + ","}
52 <#else>
53 ${ dateStartReduced } - ${ dateEndReduced }
54 </#if>
55 <#-- Si hay hora de inicio y de fin se pintan -->
56 <#if dateStartHourStr?? && dateStartMinStr?? && dateEndHourStr?? && dateEndMinStr?? >
57 ${ dateStartHourStr }:${ dateStartMinStr } - ${ dateEndHourStr }:${ dateEndMinStr }
58 <#-- Si solo hay hora de inicio se pinta. Si solo hay de fin no -->
59 <#elseif dateStartHourStr?? && dateStartMinStr??>
60 ${ dateStartHourStr }:${ dateStartMinStr }
61 </#if>
62 </span>
63 <#else>
64 <span class="date">
65 ${ dateStartReduced } - ${ dateEndReduced }
66 </span>
67 </#if>
68 </#if>
69
70 <#-- LOCALIZACION -->
71 <@upvlibs.VocabFormatCategoriesSummary vocabularyName="Kokalekuak"/>
72 <#assign localizationSummary = upvlibs.catStringSummary >
73 <#if (localizationSummary?? && localizationSummary?has_content) >
74 <#assign lastComma = localizationSummary?last_index_of(',')>
75 <#if (lastComma > 0)>
76 <#assign newlocalizationSummary = localizationSummary?substring(0,lastComma)>
77 <#else>
78 <#assign newlocalizationSummary = localizationSummary>
79 </#if>
80 ${newlocalizationSummary}
81 </#if>
82
83
84 </small></p>
85
86 </div>