ingang/app/views/votes/index.html.erb

30 lines
514 B
Plaintext

<p id="notice"><%= notice %></p>
<h1>Votes: <%= @room.name %></h1>
<table>
<thead>
<tr>
<th>ID</th>
<th>User ID</th>
<th>Election Slug</th>
<th>Login ID</th>
</tr>
</thead>
<tbody>
<% @votes.each do |vote| %>
<tr>
<td><%= vote.id %></td>
<td><%= vote.user_id %></td>
<td><%= vote.election_slug %></td>
<td><%= vote.voter_login_id %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'Back', room_path(@room) %>