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
333 B
11 lines
333 B
<div class="max-w-6xl mx-auto px-2 py-3">
|
|
<%= link_to 'Create Flow', new_flow_path, data: { turbo_frame: :modal } %>
|
|
<% @flows.each do |flow| %>
|
|
<div>
|
|
<%= flow.name %> |
|
|
<a href="<%= flow_path(flow) %>">edit</a> |
|
|
<a href="<%= flow_submissions_path(flow) %>">submissions</a> |
|
|
</div>
|
|
<% end %>
|
|
</div>
|