<%= link_to root_path, class: 'flex items-center mb-1 md:mb-0' do %>
<%= svg_icon('chevron_left', class: 'w-5 h-5') %>
<%= t('back_to_active') %>
<% end %>
<% if @pagy.count.nil? || @pagy.count > 0 %>
<%= render partial: 'templates/template', collection: @templates, locals: { with_folder: true } %>
<% elsif params[:q].present? %>
<%= t('templates_not_found') %>
<% if @related_submissions.present? %>
<%= render partial: 'templates/submission', collection: @related_submissions, locals: { with_template: true } %>
<%= render 'shared/pagination', pagy: @related_submissions_pagy, items_name: 'submissions', next_page_path: submissions_archived_index_path(q: params[:q]) %>
<% end %>
<% end %>
<%= render 'shared/pagination', pagy: @pagy, items_name: 'templates' %>