redmine_glossary/app/views/glossary_terms/index.html.erb

23 lines
374 B
Plaintext
Raw Normal View History

<h2>GlossaryTermsController#index</h2>
2018-05-01 17:42:01 +02:00
<table class="list">
2018-05-01 17:42:01 +02:00
<thead>
<tr>
<th>name</th>
<th>description</th>
2018-05-01 17:42:01 +02:00
</tr>
</thead>
<tbody>
<% @glossary_terms.each do |term| %>
<tr>
<td class="name">
2018-05-01 17:42:01 +02:00
<%= term.name %>
</td>
<td class="description">
2018-05-01 17:42:01 +02:00
<%= term.description %>
</td>
</tr>
<% end %>
</tbody>
</table>