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

23 lines
328 B
Plaintext
Raw Normal View History

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