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

23 lines
404 B
Plaintext
Raw Normal View History

2018-05-03 14:14:59 +02:00
<h2><%=t :label_glossary_terms %></h2>
2018-05-01 17:42:01 +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>
<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>