ingang/app/views/rooms/#index.html.erb#

35 lines
768 B
Plaintext

<p id="notice"><%= notice %></p>
<h1>Rooms</h1>
<table>
<thead>
<tr>
<th>Name</th>
<th>Meeting</th>
<th>Attendee pw</th>
<th>Moderator pw</th>
<th colspan="3"></th>
</tr>
</thead>
<tbody>
<% @rooms.each do |room| %>
<tr>
<td><%= room.name %></td>
<td><%= room.meeting %></td>
<td><%= room.attendee_pw %></td>
<td><%= room.moderator_pw %></td>
<td><%= room.users %></td>
<td><%= link_to 'Show', room %></td>
<td><%= link_to 'Edit', edit_room_path(room) %></td>
<td><%= link_to 'Destroy', room, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Room', new_room_path %>