forked from bofh/fetsite
28 lines
573 B
Plaintext
28 lines
573 B
Plaintext
<h1>Listing gremien</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Desc</th>
|
|
<th>Typ</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @gremien.each do |gremium| %>
|
|
<tr>
|
|
<td><%= gremium.name %></td>
|
|
<td><%= gremium.desc %></td>
|
|
<td><%= gremium.typ %></td>
|
|
<td><%= link_to 'Show', gremium %></td>
|
|
<td><%= link_to 'Edit', edit_gremium_path(gremium) %></td>
|
|
<td><%= link_to 'Destroy', gremium, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Gremium', new_gremium_path %>
|