Advance results
The CIS makes 'Previews of results' of its surveys available to the public, with provisional data. These Advances contain the following documents: the technical sheet of the study, the relative frequencies of each of the questions and their cross-sections by certain sociodemographic, political and socioeconomic variables; Some of them being: sex, age, level of education, size of municipality, voting memory or ideological self-location. Furthermore, in those surveys that have voting intentions, a sheet estimating electoral results is also included in accordance with the type of elections in question (general, regional, municipal or European elections).
An error occurred while processing the template.
The string doesn't match the expected date/time/date-time format. The string to parse was: "Nov 5, 2015 2:42 PM". The expected format was: "dd-MMM-yyyy H:mm". The nested reason given follows: Unparseable date: "Nov 5, 2015 2:42 PM" ---- FTL stack trace ("~" means nesting-related): - Failed at: ${entry.getPublishedDateString()?date... [in template "20096#20122#1107441" at line 26, column 97] ----
1<div class="search-total-label">
2 ${languageUtil.format(locale, "x-results-for-x", [searchContainer.getTotal(), "<strong>" + htmlUtil.escape(searchResultsPortletDisplayContext.getKeywords()) + "</strong>"], false)}
3</div>
4
5<#setting locale="es_ES">
6
7<div class="display-list">
8 <ul class="list-group" id="search-results-display-list">
9 <#if entries?has_content>
10 <#list entries as entry>
11 <li class="list-group-item list-group-item-flex">
12 <#if !entry.isTemporarilyUnavailable()>
13 <div class="autofit-col autofit-col-expand">
14 <section class="autofit-section">
15 <div class="list-group-title">
16 <a href="${entry.getViewURL()}">
17 ${entry.getHighlightedTitle()}
18 </a>
19 </div>
20
21 <div class="search-results-metadata">
22 <p class="list-group-subtext">
23 <#if entry.isPublishedDateVisible()>
24 <#assign journalArticle = entry/>
25 <span class="subtext-item">
26 ${entry.getPublishedDateString()?datetime("dd-MMM-yyyy H:mm")?string["dd-MM-yyyy"]}
27 </span>
28 </#if>
29 </p>
30 </div>
31 </section>
32 </div>
33 <#else>
34 <div class="autofit-col">
35 <div class="alert alert-danger">
36 <@liferay.language_format
37 arguments="result"
38 key="is-temporarily-unavailable"
39 />
40 </div>
41 </div>
42 </#if>
43 </li>
44 </#list>
45 </#if>
46 </ul>
47</div>
48
49
50
51
52
53<@liferay_aui.script use="aui-base">
54 A.one('#search-results-display-list').delegate(
55 'click',
56 function(event) {
57 var currentTarget = event.currentTarget;
58
59 currentTarget.siblings('.search-results-list').toggleClass('hide');
60 },
61 '.expand-details'
62 );
63</@liferay_aui.script>