2018-05-05 14:04:21 +02:00
|
|
|
<div class="contextual">
|
|
|
|
<%= link_to l(:button_edit), edit_glossary_term_path, class: 'icon icon-edit' %>
|
2018-05-05 15:59:12 +02:00
|
|
|
<%= link_to l(:button_delete), glossary_term_path, method: :delete,
|
|
|
|
data: {confirm: l(:text_are_you_sure)}, class: 'icon icon-del' %>
|
2018-05-05 14:04:21 +02:00
|
|
|
</div>
|
|
|
|
|
2018-05-04 09:00:43 +02:00
|
|
|
<h2><%=l :label_glossary_term %> #<%= @term.id %></h2>
|
2018-05-04 02:40:20 +02:00
|
|
|
|
|
|
|
<h3><%= @term.name %></h3>
|
|
|
|
|
|
|
|
<table>
|
2018-05-06 16:39:57 +02:00
|
|
|
<tr>
|
|
|
|
<th><%=l :field_category %></th>
|
|
|
|
<td><%= @term.category.try!(:name) %>
|
|
|
|
</tr>
|
2018-05-04 02:40:20 +02:00
|
|
|
<tr>
|
2018-05-04 09:00:43 +02:00
|
|
|
<th><%=l :field_description %></th>
|
2018-05-04 02:40:20 +02:00
|
|
|
<td><%= @term.description %></td>
|
|
|
|
</tr>
|
2018-05-04 09:00:43 +02:00
|
|
|
<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>
|