ensl.org/app/views/widgets/_poll.html.erb

11 lines
329 B
Text
Raw Normal View History

2014-04-06 14:14:03 +00:00
<% 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>
2014-04-06 14:14:03 +00:00
<% end %>