22 lines
582 B
Plaintext
22 lines
582 B
Plaintext
<h2 class="inline-block"><%= t("admin.polls.index.title") %></h2>
|
|
|
|
<%= link_to t("admin.polls.index.create"),
|
|
new_admin_poll_path,
|
|
class: "button success float-right" %>
|
|
|
|
<% if @polls.any? %>
|
|
<table class="fixed">
|
|
<thead>
|
|
<th><%= t("admin.polls.index.name") %></th>
|
|
<th><%= t("admin.polls.index.dates") %></th>
|
|
<th><%= t("admin.actions.actions") %></th>
|
|
</thead>
|
|
<tbody>
|
|
<%= render @polls %>
|
|
</tbody>
|
|
</table>
|
|
<% else %>
|
|
<div class="callout primary">
|
|
<%= t("admin.polls.index.no_polls") %>
|
|
</div>
|
|
<% end %> |