35 lines
933 B
Plaintext
35 lines
933 B
Plaintext
<div class="contextual">
|
|
<%= link_to_if_authorized l(:button_edit),
|
|
{ controller: :glossary_terms, action: :edit, project_id: @project },
|
|
class: 'icon icon-edit' %>
|
|
<%= link_to_if_authorized l(:button_delete),
|
|
{ controller: :glossary_terms, action: :destroy,
|
|
id: @term, project_id: @project },
|
|
method: :delete, data: {confirm: l(:text_are_you_sure)}, class: 'icon icon-del' %>
|
|
</div>
|
|
|
|
<%= render partial: 'sidebar' %>
|
|
|
|
<h2><%=l :label_glossary_term %> #<%= @term.id %></h2>
|
|
|
|
<h3><%= @term.name %></h3>
|
|
|
|
<table>
|
|
<tr>
|
|
<th><%=l :field_category %></th>
|
|
<td><%= @term.category.try!(:name) %>
|
|
</tr>
|
|
<tr>
|
|
<th><%=l :field_description %></th>
|
|
<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>
|
|
</table>
|