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.
9 lines
306 B
9 lines
306 B
<%= 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 %>
|