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.
55 lines
2.2 KiB
55 lines
2.2 KiB
<div>
|
|
<%= link_to(@is_archived ? templates_shared_index_path : root_path, class: 'flex items-center') do %>
|
|
<%= svg_icon('chevron_left', class: 'w-5 h-5') %>
|
|
<span style="margin-left: 3px"><%= @is_archived ? t('back_to_active') : t('home') %></span>
|
|
<% end %>
|
|
</div>
|
|
<div class="relative flex justify-between items-center w-full mb-4">
|
|
<h1 class="text-2xl truncate md:text-3xl font-bold flex items-center flex-grow min-w-0 space-x-2 md:flex <%= 'hidden' if params[:q].present? %>">
|
|
<%= svg_icon('folder', class: 'w-9 h-9 flex-shrink-0') %>
|
|
<span class="truncate capitalize"><%= t('shared') %></span>
|
|
<% if @is_archived %>
|
|
<span class="badge badge-outline badge-lg align-middle"><%= t('archived') %></span>
|
|
<% end %>
|
|
</h1>
|
|
<div class="flex space-x-2">
|
|
<% if params[:q].present? || @pagy.count.nil? || @pagy.count > 1 %>
|
|
<%= render 'shared/search_input' %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
<% view_archived_html = capture do %>
|
|
<% if @has_archived && params[:q].blank? %>
|
|
<div>
|
|
<a href="<%= templates_shared_index_path(archived: true) %>" class="link text-sm"><%= t('view_archived') %></a>
|
|
</div>
|
|
<% end %>
|
|
<% end %>
|
|
<% if @pagy.count.nil? || @pagy.count > 0 %>
|
|
<div class="grid gap-4 md:grid-cols-3">
|
|
<%= render partial: 'templates/template', collection: @templates %>
|
|
</div>
|
|
<% elsif params[:q].present? %>
|
|
<div class="text-center">
|
|
<div class="mt-16 text-3xl font-semibold">
|
|
<%= t('templates_not_found') %>
|
|
</div>
|
|
</div>
|
|
<% if @related_submissions.present? %>
|
|
<h1 class="text-2xl md:text-3xl sm:text-4xl font-bold mt-8 md:mt-4">
|
|
<%= t('submissions') %>
|
|
</h1>
|
|
<div class="space-y-4 mt-4">
|
|
<%= render partial: 'templates/submission', collection: @related_submissions, locals: { with_template: true } %>
|
|
</div>
|
|
<%= render 'shared/pagination', pagy: @related_submissions_pagy, items_name: 'submissions', next_page_path: @is_archived ? submissions_archived_index_path(q: params[:q]) : submissions_path(q: params[:q]) %>
|
|
<% end %>
|
|
<% end %>
|
|
<% if @pagy.pages > 1 %>
|
|
<%= render 'shared/pagination', pagy: @pagy, items_name: 'templates', left_additional_html: view_archived_html %>
|
|
<% else %>
|
|
<div class="mt-2">
|
|
<%= view_archived_html %>
|
|
</div>
|
|
<% end %>
|