<table class="table table-hover">
<thead>
<tr>
<th scope="col"><%= _('Title') %> <%= paginable_sort_link('notifications.title') %></th>
<th scope="col"><%= _('Level') %> <%= paginable_sort_link('notifications.level') %></th>
<th scope="col"><%= _('Start') %> <%= paginable_sort_link('notifications.starts_at') %></th>
<th scope="col"><%= _('Expiration') %> <%= 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>