Skip to content

Commit

Permalink
responsive users table
Browse files Browse the repository at this point in the history
  • Loading branch information
skyporter committed Apr 25, 2024
1 parent 446fb6f commit d051ba3
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions app/views/catalog_admin/users/_catalog_users.html.erb
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
<table class="table">
<thead>
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th><%= t('email') %></th>
<th><%= t('role') %></th>
<th><%= t('invited') %></th>
<th><%= t('last_signed_in') %></th>
<th></th>
</tr>
</thead>
<tbody>
</thead>
<tbody>
<% @users.each do |user| %>
<tr>
<td><%= fa_icon(:user, :text => user.email) %></td>
Expand All @@ -27,5 +28,6 @@
</td>
</tr>
<% end %>
</tbody>
</table>
</tbody>
</table>
</div>

0 comments on commit d051ba3

Please sign in to comment.