redmine_glossary/app/views/glossary_terms/index.html.erb @ 8f01c1db
| 02548925 | TAKAHASHI,Toru | <h2>GlossaryTermsController#index</h2>
|
||
| 8f01c1db | Toru Takahashi | |||
<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>
|