mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
101 lines
3.9 KiB
101 lines
3.9 KiB
<div class="flex-wrap space-y-4 md:flex md:flex-nowrap md:space-y-0 md:space-x-10">
|
|
<%= render 'shared/settings_nav' %>
|
|
<div class="md:flex-grow">
|
|
<div class="flex justify-between mb-4">
|
|
<h1 class="text-4xl font-bold">
|
|
<%= t('status_users', status: params[:status].to_s.titleize) %>
|
|
</h1>
|
|
<div class="flex items-center space-x-4">
|
|
<% if can?(:create, User.new(account: current_account)) %>
|
|
<%= render 'users/extra_buttons' %>
|
|
<% if content_for(:add_user_button) %>
|
|
<%= content_for(:add_user_button) %>
|
|
<% else %>
|
|
<%= link_to new_user_path, class: 'btn btn-primary btn-md gap-2', data: { turbo_frame: 'modal' } do %>
|
|
<%= svg_icon('plus', class: 'w-6 h-6') %>
|
|
<span><%= t('new_user') %></span>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<div class="overflow-x-auto">
|
|
<table class="table w-full table-lg rounded-b-none overflow-hidden">
|
|
<thead class="bg-base-200">
|
|
<tr class="text-neutral uppercase">
|
|
<th>
|
|
<%= t('name') %>
|
|
</th>
|
|
<th>
|
|
<%= t('email') %>
|
|
</th>
|
|
<th>
|
|
<%= t('role') %>
|
|
</th>
|
|
<th>
|
|
<%= t('last_session') %>
|
|
</th>
|
|
<th class="text-right" width="1px">
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% @users.each do |user| %>
|
|
<tr scope="row">
|
|
<td>
|
|
<%= user.full_name %>
|
|
</td>
|
|
<td>
|
|
<%= user.email %>
|
|
</td>
|
|
<td>
|
|
<span class="badge badge-info badge-outline">
|
|
<%= user.role %>
|
|
</span>
|
|
</td>
|
|
<td>
|
|
<%= user.last_sign_in_at ? l(user.last_sign_in_at.in_time_zone(current_account.timezone), format: :short, locale: current_account.locale) : '-' %>
|
|
</td>
|
|
<td class="flex items-center space-x-2 justify-end">
|
|
<% if can?(:update, user) && user.archived_at.blank? %>
|
|
<%= link_to edit_user_path(user), class: 'btn btn-outline btn-xs', title: t('edit'), data: { turbo_frame: 'modal' } do %>
|
|
<%= t('edit') %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if params[:status].blank? && can?(:destroy, user) && user != current_user %>
|
|
<%= button_to user_path(user), method: :delete, class: 'btn btn-outline btn-error btn-xs', title: t('remove'), data: { turbo_confirm: t('are_you_sure_') } do %>
|
|
<%= t('remove') %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if params[:status].present? && can?(:manage, user) && user != current_user %>
|
|
<%= button_to user_path(user), method: :put, params: { user: { archived_at: nil } }, class: 'btn btn-outline btn-xs', title: t('unarchive'), data: { turbo_confirm: t('are_you_sure_') } do %>
|
|
<%= t('unarchive') %>
|
|
<% end %>
|
|
<% end %>
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<% view_archived_html = capture do %>
|
|
<% if current_account.users.archived.exists? %>
|
|
<div>
|
|
<% if params[:status] == 'archived' %>
|
|
<a href="<%= settings_users_path %>" class="link text-sm"><%= t('view_active') %></a>
|
|
<% else %>
|
|
<a href="<%= settings_archived_users_path %>" class="link text-sm"><%= t('view_archived') %></a>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% if @pagy.pages > 1 %>
|
|
<%= render 'shared/pagination', pagy: @pagy, items_name: 'users', left_additional_html: view_archived_html %>
|
|
<% else %>
|
|
<div class="mt-2">
|
|
<%= view_archived_html %>
|
|
</div>
|
|
<% end %>
|
|
</div>
|
|
</div>
|