<%=l :label_glossary_terms %>
<%= link_to l(:label_glossary_term_new), new_project_glossary_term_path, 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 %>