Newer
Older
dmpopidor / app / views / paginable / themes / _index.html.erb
@Gavin Morrice Gavin Morrice on 28 Aug 2018 485 bytes Issue 532 (#1847)
<table class="table table-hover">
  <thead>
    <tr>
      <th scope="col"><%= _('Name') %>&nbsp;<%= paginable_sort_link('title') %></th>
      <th scope="col"><%= _('Guidance') %>&nbsp;<%= paginable_sort_link('description') %></th>
    </tr>
  </thead>
  <tbody>
    <% scope.each do |theme| %>
      <tr>
        <td><%= link_to(theme.title, edit_super_admin_theme_path(theme)) %></td>
        <td><%= sanitize(theme.description) %></td>
      </tr>
    <% end %>
  </tbody>
</table>