forked from bofh/fetsite
27 lines
552 B
Plaintext
27 lines
552 B
Plaintext
<h1>Listing moduls</h1>
|
|
|
|
<table>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Desc</th>
|
|
<th></th>
|
|
<th></th>
|
|
<th></th>
|
|
</tr>
|
|
|
|
<% @moduls.each do |modul| %>
|
|
<tr>
|
|
<td><%= modul.name %></td>
|
|
<td><%= modul.desc %></td>
|
|
<td><%= link_to 'Show', modul_path(modul) %></td>
|
|
<td><%= link_to 'Edit', edit_modul_path(modul) %></td>
|
|
<td><%= link_to 'Destroy', [modul], method: :delete, data: { confirm: 'Are you sure?' } %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<br />
|
|
<% if !@studium.nil? %>
|
|
<%= link_to 'New Modul', new_modul_path() %>
|
|
<% end%>
|