Files
grecia/app/views/officing/voters/new.html.erb
2017-01-30 13:33:38 +01:00

30 lines
711 B
Plaintext

<%= back_link_to new_officing_residence_path %>
<h2><%= t("officing.voters.new.title") %></h2>
<% if @polls.any? %>
<table>
<thead>
<tr>
<th><%= t("officing.voters.new.table_poll") %></th>
<th><%= t("officing.voters.new.table_actions") %></th>
</tr>
</thead>
<tbody>
<% @polls.each do |poll| %>
<tr id="<%= dom_id(poll) %>">
<td>
<%= poll.name %>
</td>
<td id="actions">
<% if poll.votable_by?(@user) %>
<%= render "can_vote", poll: poll %>
<% else %>
<%= render "already_voted" %>
<% end %>
</td>
</tr>
<% end %>
</tbody>
</table>
<% end %>