[phase-10]modified terms index with category grouping

This commit is contained in:
Toru Takahashi 2018-05-27 00:33:05 +09:00 committed by TAKAHASHI,Toru
parent c63ac32052
commit 088b2fa081
4 changed files with 44 additions and 30 deletions

View File

@ -0,0 +1,28 @@
<table class="list">
<thead>
<tr>
<th>#</th>
<th><%=l :field_name %></th>
<th><%=l :field_category %></th>
<th><%=l :field_description %></th>
</tr>
</thead>
<tbody>
<% terms.each do |term| %>
<tr>
<td class="id">
<%= term.id %>
</td>
<td class="name">
<%= link_to term.name, [@project, term] %>
</td>
<td class="roles">
<%= term.category.try!(:name) %>
</td>
<td class="description">
<%= term.description %>
</td>
</tr>
<% end %>
</tbody>
</table>

View File

@ -8,31 +8,15 @@
<%= render partial: 'sidebar' %> <%= render partial: 'sidebar' %>
<table class="list"> <% categorized_terms = @glossary_terms.reject { |t| t.category_id.nil? } %>
<thead> <% uncategorized_terms = @glossary_terms.where(category_id: nil) %>
<tr>
<th>#</th> <% categorized_terms.group_by(&:category).each do |category, terms| %>
<th><%=l :field_name %></th> <h3><%= category.name %></h3>
<th><%=l :field_category %></th> <%= render partial: 'index_in_category', locals: {terms: terms} %>
<th><%=l :field_description %></th> <% end %>
</tr>
</thead> <h3><%=l :label_not_categorized %></h3>
<tbody> <%= render 'index_in_category', terms: uncategorized_terms %>
<% @glossary_terms.each do |term| %>
<tr>
<td class="id">
<%= term.id %>
</td>
<td class="name">
<%= link_to term.name, [@project, term] %>
</td>
<td class="roles">
<%= term.category.try!(:name) %>
</td>
<td class="description">
<%= term.description %>
</td>
</tr>
<% end %>
</tbody>
</table>

View File

@ -12,6 +12,7 @@ en:
label_view: View label_view: View
label_glossary_index: index label_glossary_index: index
label_not_categorized: Not categorized
index_en: | index_en: |
A B C D E F A B C D E F

View File

@ -11,6 +11,7 @@ ja:
label_view: 表示 label_view: 表示
label_glossary_index: 索引 label_glossary_index: 索引
label_not_categorized: 未分類
permission_view_glossary: 用語集の閲覧 permission_view_glossary: 用語集の閲覧
permission_manage_glossary: 用語集の管理 permission_manage_glossary: 用語集の管理