<%= template.name %>
    <% if template.deleted_at? %>
      Archived
    <% end %>
  
  
    <% unless template.deleted_at? %>
      <%= button_to button_title(title: 'Remove', disabled_with: 'Removing', icon: svg_icon('trash', class: 'w-6 h-6')), template_path(template), class: 'btn btn-outline btn-sm', method: :delete, data: { turbo_confirm: 'Are you sure?' } %>
    <% end %>
    <%= link_to new_template_path(base_template_id: template.id), class: 'btn btn-outline btn-sm', data: { turbo_frame: :modal } do %>
      <%= svg_icon('copy', class: 'w-6 h-6') %>
      Clone
    <% end %>
    <% unless template.deleted_at? %>
      <%= link_to edit_template_path(template), class: 'btn btn-outline btn-sm' do %>
        
          <%= svg_icon('pencil', class: 'w-6 h-6') %>
          Edit
        
      <% end %>
    <% end %>
    <% if template.deleted_at? %>
      <%= button_to button_title(title: 'Restore', disabled_with: 'Restoring', icon: svg_icon('rotate', class: 'w-6 h-6')), template_restore_index_path(template), class: 'btn btn-outline btn-sm' %>
    <% end %>