forked from bofh/fetsite
26 lines
583 B
Plaintext
26 lines
583 B
Plaintext
<h1>Listing themengruppen</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Text</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @themengruppen.each do |themagruppen| %>
|
|
<tr>
|
|
<td><%= themagruppen.title %></td>
|
|
<td><%= themagruppen.text %></td>
|
|
<td><%= link_to 'Show', themagruppen %></td>
|
|
<td><%= link_to 'Edit', edit_themagruppen_path(themagruppen) %></td>
|
|
<td><%= link_to 'Destroy', themagruppen, method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
|
|
<%= link_to 'New Themengruppe', new_themagruppen_path %>
|