ensl.org/app/views/widgets/_poll.html.erb
Luke Barratt 5487854a6c Start to cleanup old assets
Added new ISO country code flag icons to asset pipeline
Lots and lots of new style changes
Began converting to JS to coffeescript
2014-04-09 00:28:53 +01:00

11 lines
No EOL
312 B
Text

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