mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
369 B
11 lines
369 B
<div class="max-w-6xl mx-auto px-2 py-3">
|
|
<%= link_to 'Create Template', new_template_path, data: { turbo_frame: :modal } %>
|
|
<% @templates.each do |template| %>
|
|
<div>
|
|
<%= template.name %> |
|
|
<a href="<%= template_path(template) %>">edit</a> |
|
|
<a href="<%= template_submissions_path(template) %>">submissions</a> |
|
|
</div>
|
|
<% end %>
|
|
</div>
|