We accidentally introduced a typo in commit f497227e3 which caused the
dates to be rendered outside the element where the dates styles are
applied.
66 lines
2.6 KiB
Plaintext
66 lines
2.6 KiB
Plaintext
<div class="poll with-image">
|
|
<% if current_user %>
|
|
<% if current_user.unverified? %>
|
|
<div class="icon-poll-answer unverified" title="<%= t("polls.index.unverified") %>">
|
|
<span class="show-for-sr"><%= t("polls.index.unverified") %></span>
|
|
</div>
|
|
<% elsif cannot?(:answer, poll) %>
|
|
<div class="icon-poll-answer cant-answer" title="<%= t("polls.index.cant_answer") %>">
|
|
<span class="show-for-sr"><%= t("polls.index.cant_answer") %></span>
|
|
</div>
|
|
<% elsif !poll.votable_by?(current_user) %>
|
|
<div class="icon-poll-answer already-answer" title="<%= t("polls.index.already_answer") %>">
|
|
<span class="show-for-sr"><%= t("polls.index.already_answer") %></span>
|
|
</div>
|
|
<% end %>
|
|
<% else %>
|
|
<div class="icon-poll-answer not-logged-in" title="<%= t("polls.index.not_logged_in") %>">
|
|
<span class="show-for-sr"><%= t("polls.index.not_logged_in") %></span>
|
|
</div>
|
|
<% end %>
|
|
<div class="row" data-equalizer data-equalize-on="medium">
|
|
<div class="small-12 medium-3 column">
|
|
<div class="image-container" data-equalizer-watch>
|
|
<% if poll.image.present? %>
|
|
<%= image_tag poll.image.variant(:large), alt: poll.image.title.unicode_normalize %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<div class="small-12 medium-6 column" data-equalizer-watch>
|
|
<% if poll.questions.one? %>
|
|
<h4><%= link_to_poll poll.questions.first.title, poll %></h4>
|
|
<div class="dates"><%= dates %></div>
|
|
<% else %>
|
|
<h4><%= link_to_poll poll.name, poll %></h4>
|
|
<div class="dates"><%= dates %></div>
|
|
|
|
<ul class="margin-top">
|
|
<% poll.questions.sort_for_list.each do |question| %>
|
|
<li><%= question.title %></li>
|
|
<% end %>
|
|
</ul>
|
|
<% end %>
|
|
<% if poll.geozones.any? %>
|
|
<p>
|
|
<small><%= t("polls.index.geozone_info") %></small>
|
|
</p>
|
|
<% end %>
|
|
<ul class="tags">
|
|
<% poll.geozones.each do |g| %>
|
|
<li><span><%= g.name %></span></li>
|
|
<% end %>
|
|
</ul>
|
|
<%= render SDG::TagListComponent.new(poll, limit: 5, linkable: false) %>
|
|
</div>
|
|
<div class="small-12 medium-3 column table" data-equalizer-watch>
|
|
<div class="table-cell align-middle">
|
|
<% if poll.expired? %>
|
|
<%= link_to_poll t("polls.index.participate_button_expired"), poll, class: "button hollow expanded" %>
|
|
<% else %>
|
|
<%= link_to_poll t("polls.index.participate_button"), poll, class: "button hollow expanded" %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|