18 lines
637 B
Plaintext
18 lines
637 B
Plaintext
<table class="table">
|
|
<thead>
|
|
<tr class="bg-primary">
|
|
<th><%= t('categories') %></th>
|
|
<th><%= t('title') %></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% data['greeting_card_records'].each do |greeting_card_record| %>
|
|
<tr>
|
|
<td><%= greeting_card_record.category.title %></td>
|
|
<td><%= link_to greeting_card_record.title,"#{data['url']}?item=#{greeting_card_record.id}",title: greeting_card_record.title %></td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
<% total_pages = data['greeting_card_records'].total_pages %>
|
|
<%= create_pagination(total_pages).html_safe if total_pages > 1 %> |