<%=l :label_glossary_terms %>
<%= link_to_if_authorized l(:label_glossary_term_new),
{ controller: :glossary_terms, action: :new, project_id: @project },
class: 'icon icon-add' %>
<%= render partial: 'sidebar' %>
# |
<%=l :field_name %> |
<%=l :field_category %> |
<%=l :field_description %> |
<% @glossary_terms.each do |term| %>
<%= term.id %>
|
<%= link_to term.name, [@project, term] %>
|
<%= term.category.try!(:name) %>
|
<%= term.description %>
|
<% end %>