2018-05-03 14:14:59 +02:00
|
|
|
<h2><%=t :label_glossary_terms %></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-03 14:14:59 +02:00
|
|
|
<th><%=t :field_name %></th>
|
|
|
|
<th><%=l :field_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>
|