29 lines
734 B
Text
29 lines
734 B
Text
|
|
<h1><%= t("scaffold.pagetitle_index", model: Guideline.model_name.human(count: 2)) %></h1>
|
||
|
|
|
||
|
|
<table class="table table-striped">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
|
||
|
|
<th><%= Guideline.human_attribute_name(:name_de) %></th>
|
||
|
|
|
||
|
|
<th><%= Guideline.human_attribute_name(:description_de) %></th>
|
||
|
|
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
<% @guidelines.each do |guideline| %>
|
||
|
|
<tr>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
<td><%= link_to(guideline, url_for(guideline)) %></td>
|
||
|
|
<td><%= link_to(guideline.description_de, url_for(guideline)) %></td>
|
||
|
|
|
||
|
|
</tr>
|
||
|
|
<% end %>
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
|
||
|
|
<div class="action-row">
|
||
|
|
<%= link_to t("scaffold.link_new", model: Guideline.model_name.human), new_guideline_path %>
|
||
|
|
</div>
|