Files
grecia/app/views/admin/poll/booths/_booth.html.erb
2017-08-04 21:27:30 +02:00

16 lines
433 B
Plaintext

<tr id="booth_<%= booth.id %>" class="booth">
<td>
<%= booth.name %>
</td>
<td>
<%= booth.location %>
</td>
<td class="text-right">
<%= link_to t("admin.booths.booth.shifts"),
new_admin_booth_shift_path(booth),
class: "button hollow" %>
<%= link_to t("admin.actions.edit"),
edit_admin_booth_path(booth),
class: "button hollow" %>
</td>
</tr>