<%= @template.name %> <%= link_to 'Edit', template_path(@template), class: 'btn btn-outline btn-sm' %>

Share link <%= svg_icon('clipboard', class: 'w-6 h-6 swap-on text-white') %> <%= svg_icon('clipboard_copy', class: 'w-6 h-6 swap-off text-white') %>

Recepients

<%= link_to new_template_submission_path(@template), class: 'btn btn-primary btn-sm gap-2', data: { turbo_frame: 'modal' } do %> <%= svg_icon('plus', class: 'w-6 h-6') %> <% end %>
<%- if @submissions.any? %> <% @submissions.each do |submission| %> <% end %>
Email Status
<%= submission.email %> <%= submission.status.humanize %> <%= link_to 'View', submission_path(@template), title: 'View', class: 'btn btn-outline btn-xs' %> <%= button_to 'Remove', submission_path(submission), class: 'btn btn-outline btn-error btn-xs', title: 'Delete', method: :delete, data: { turbo_confirm: 'Are you sure?' } %>
<% else %> <%= render 'shared/no_data_banner' %> <% end %>