Files
grecia/app/views/admin/poll/booths/_booth.html.erb
2017-10-11 19:36:23 +02:00

20 lines
582 B
Plaintext

<tr id="booth_<%= booth.id %>" class="booth">
<td>
<%= booth.name %>
</td>
<td>
<%= booth.location %>
</td>
<td class="text-right">
<% if controller_name == "shifts" || controller_name == "booths" && action_name == "available" %>
<%= link_to t("admin.booths.booth.shifts"),
new_admin_booth_shift_path(booth),
class: "button hollow" %>
<% else %>
<%= link_to t("admin.booths.booth.edit"),
edit_admin_booth_path(booth),
class: "button hollow" %>
<% end %>
</td>
</tr>