Files
grecia/app/views/admin/poll/polls/_poll.html.erb
2018-07-31 12:48:01 +02:00

23 lines
622 B
Plaintext

<tr id="<%= dom_id(poll) %>" class="poll">
<td>
<strong>
<%= link_to poll.name, admin_poll_path(poll) %>
</strong>
</td>
<td>
<%= l poll.starts_at.to_date %> - <%= l poll.ends_at.to_date %>
</td>
<td class="text-right">
<div class="small-6 column">
<%= link_to t("admin.actions.edit"),
edit_admin_poll_path(poll),
class: "button hollow expanded" %>
</div>
<div class="small-6 column">
<%= link_to t("admin.actions.configure"),
admin_poll_path(poll),
class: "button hollow expanded" %>
</div>
</td>
</tr>