Files
grecia/app/views/admin/poll/polls/show.html.erb
2016-11-14 13:57:16 +01:00

46 lines
1.0 KiB
Plaintext

<%= render "shared/back_link" %>
<div class="clear"></div>
<h2 class="inline-block">
<%= @poll.name %>
</h2>
<%= link_to t("admin.actions.edit"),
edit_admin_poll_path(@poll),
class: "button hollow float-right" %>
<%= link_to t("admin.polls.show.add_booth"), "#", class: "button success" %>
<!-- If booth in this poll == 0 -->
<div class="callout primary">
<%= t("admin.polls.show.no_booths") %>
</div>
<!-- else -->
<h2><%= t("admin.polls.show.booths_title") %></h2>
<table>
<thead>
<th><%= t("admin.polls.show.name") %></th>
<th><%= t("admin.polls.show.location") %></th>
<th>&nbsp;</th>
</thead>
<tbody>
<%= @poll.booths.each do |booth| %>
<tr>
<td>
<strong>
<%= link_to "Urna Moncloa (REFNUM)", "#" %>
</strong>
</td>
<td>
C/ Isaac Peral, 25. 28003, Madrid
</td>
<td class="text-right">
<%= link_to t("admin.actions.edit"), "#", class: "button hollow" %>
</td>
</tr>
<% end %>
</tbody>
</table>