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

8 lines
230 B
Text
Raw Permalink Normal View History

2014-04-06 14:14:03 +00:00
<% if @current_action == "news_index" %>
<div class="widget poll">
<h4><%= t('widget.poll') %></h4>
<% @poll = Poll.first(order: "created_at DESC") %>
<%= render(partial: "polls/show") if @poll %>
</div>
2014-04-06 14:14:03 +00:00
<% end %>