Newer
Older
dmpopidor / app / views / paginable / notifications / _index.html.erb
@Brian Riley Brian Riley on 1 Feb 2019 833 bytes fixed pagination issues (#2045)
<table class="table table-hover">
  <thead>
    <tr>
      <th scope="col"><%= _('Title') %>&nbsp;<%= paginable_sort_link('notifications.title') %></th>
      <th scope="col"><%= _('Level') %>&nbsp;<%= paginable_sort_link('notifications.level') %></th>
      <th scope="col"><%= _('Start') %>&nbsp;<%= paginable_sort_link('notifications.starts_at') %></th>
      <th scope="col"><%= _('Expiration') %>&nbsp;<%= paginable_sort_link('notifications.expires_at') %></th>
    </tr>
  </thead>
  <tbody>
    <% scope.each do |notification| %>
      <tr>
        <td><%= link_to notification.title, edit_super_admin_notification_path(notification) %></td>
        <td><%= notification.level %></td>
        <td><%= notification.starts_at %></td>
        <td><%= notification.expires_at %></td>
      </tr>
    <% end %>
  </tbody>
</table>