Files
fizzy/app/views/workflows/index.html.erb
T
2025-01-30 15:50:22 -06:00

25 lines
904 B
Plaintext

<% @page_title = "Workflows" %>
<% content_for :header do %>
<nav>
<%= link_to account_users_path, class: "btn flex-item-justify-start", data: { controller: "hotkey", action: "keydown.esc@document->hotkey#click" } do %>
<%= image_tag "arrow-left.svg", aria: { hidden: true }, size: 24 %>
<span class="for-screen-reader">Go back</span>
<% end %>
<span class="btn btn--placeholder"></span>
<h1 class="txt-large"><%= @page_title %></h1>
<%= link_to new_workflow_path, class: "btn flex-item-justify-end" do %>
<%= image_tag "add.svg", aria: { hidden: true }, size: 24 %>
<span class="for-screen-reader">Create a new workflow</span>
<% end %>
</nav>
<% end %>
<%= turbo_frame_tag :workflows do %>
<section class="center justify-center flex flex-wrap gap">
<%= render partial: "workflows/workflow", collection: @workflows %>
</section>
<% end %>