ensl.org/app/views/widgets/_poll.html.erb
2014-04-07 11:04:56 +01:00

11 lines
No EOL
329 B
Text

<% if @current_action == "news_index" %>
<div class="widget poll">
<div class="header"><%= t('widget.poll') %></div>
<div class="body">
<div class="content">
<% @poll = Poll.first(order: "created_at DESC") %>
<%= render(partial: "polls/show") if @poll %>
</div>
</div>
</div>
<% end %>