<table class="table table-hover">
<thead>
<tr>
<th scope="col"><%= _('Name') %> <%= paginable_sort_link('title') %></th>
<th scope="col"><%= _('Guidance') %> <%= 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><%= raw(theme.description) %></td>
</tr>
<% end %>
</tbody>
</table>