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

19 lines
402 B
Plaintext
Raw Normal View History

<h2><%=l :label_glossary_term %> #<%= @term.id %></h2>
2018-05-04 02:40:20 +02:00
<h3><%= @term.name %></h3>
<table>
<tr>
<th><%=l :field_description %></th>
2018-05-04 02:40:20 +02:00
<td><%= @term.description %></td>
</tr>
<tr>
<th><%=l :field_created_on %></th>
<td><%= format_time(@term.created_at) %></td>
</tr>
<tr>
<th><%=l :field_updated_on %></th>
<td><%= format_time(@term.updated_at) %></td>
</tr>
2018-05-04 02:40:20 +02:00
</table>