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