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.
docuseal/app/views/users/_bottom_links.html.erb

15 lines
677 B

<div class="flex items-center space-x-1">
<% if %w[archived integration].include?(params[:status]) %>
<%= link_to t('view_active'), settings_users_path, class: 'link text-sm' %>
<% else %>
<% links = [] %>
<% if current_account.users.active.exists?(role: 'integration') %>
<% links << link_to(t('view_embedding_users'), settings_integration_users_path, class: 'link text-sm') %>
<% end %>
<% if current_account.users.archived.exists? %>
<% links << link_to(t('view_archived'), settings_archived_users_path, class: 'link text-sm') %>
<% end %>
<%= links.join('<span class="text-neutral-700">|</span>').html_safe %>
<% end %>
</div>