<% if Docuseal.demo? %><%= render 'shared/demo_alert' %><% end %> <% if @pagy.count > 0 || params[:q].present? || @template_folders.present? %>

Templates

<% if params[:q].present? || @pagy.pages > 1 || @template_folders.present? %> <%= render 'shared/search_input' %> <% end %> <% if can?(:create, ::Template) %> <%= render 'templates/upload_button' %> <%= link_to new_template_path, class: 'btn btn-primary text-base btn-md gap-2', data: { turbo_frame: :modal } do %> <%= svg_icon('plus', class: 'w-6 h-6 stroke-2') %> <% end %> <% end %>
<% view_archived_html = capture do %> <% if current_account.templates.where.not(deleted_at: nil).exists? %>
View Archived
<% end %> <% end %> <% if @template_folders.present? %>
<%= render partial: 'template_folders/folder', collection: @template_folders, as: :folder %>
<% if @templates.blank? %> <% if @pagy.pages > 1 %> <%= render 'shared/pagination', pagy: @pagy, left_additional_html: view_archived_html %> <% elsif params[:q].blank? %>
<%= view_archived_html %>
<% end %> <% end %> <% end %> <% if @templates.present? %>
<%= render partial: 'templates/template', collection: @templates %>
<% if @pagy.pages > 1 %> <%= render 'shared/pagination', pagy: @pagy, items_name: 'templates', left_additional_html: view_archived_html %> <% else %>
<%= view_archived_html %>
<% end %> <% elsif params[:q].present? %>
Templates not Found
<% end %> <% else %>

👋 Welcome to DocuSeal

Streamline document workflows, from creating customizable templates to filling and signing document forms

<%= link_to new_template_path, class: 'base-button', data: { turbo_frame: :modal } do %> <%= svg_icon('plus', class: 'w-6 h-6 stroke-2') %> Create Template <% end %>
<% end %>