<%= link_to root_path do %> ← <%= t('home') %> <% end %>
<%= form_for '', url: '', id: form_id = SecureRandom.uuid, method: :post, class: 'hidden', data: { target: 'dashboard-dropzone.form' }, html: { enctype: 'multipart/form-data' } do %> <% end %> <%= render 'templates/dashboard_dropzone', style: 'height: 137px' %>

<%= svg_icon('folder', class: 'w-9 h-9 flex-shrink-0') %> <%= @template_folder.name %> <% if can?(:update, @template_folder) && @template_folder.name != TemplateFolder::DEFAULT_NAME %> <%= svg_icon('pencil', class: 'w-7 h-7') %> <% end %>

<% if params[:q].present? || @pagy.pages > 1 %> <%= render 'shared/search_input' %> <% end %> <% if can?(:create, ::Template) %> <%= render 'templates/upload_button', folder_name: @template_folder.name %> <%= link_to new_template_path(folder_name: @template_folder.name), class: 'white-button !border gap-2', data: { turbo_frame: :modal } do %> <%= svg_icon('plus', class: 'w-6 h-6 stroke-2') %> <% end %> <% end %>
<% if @pagy.count.nil? || @pagy.count > 0 %>
<%= render partial: 'templates/template', collection: @templates %>
<% templates_order_select_html = capture do %> <% if params[:q].blank? && @pagy.pages > 1 %> <%= render('shared/templates_order_select', with_recently_used: @pagy.count.present? && @pagy.count < 10_000) %> <% end %> <% end %> <%= render 'shared/pagination', pagy: @pagy, items_name: 'templates', right_additional_html: templates_order_select_html %> <% elsif params[:q].present? %>
<%= t('templates_not_found') %>
<% end %>