Files
fizzy/app/views/workflows/index.html.erb
T
2025-08-27 13:48:47 -05:00

23 lines
681 B
Plaintext

<% @page_title = "Workflows" %>
<% content_for :header do %>
<div class="header__actions header__actions--start">
<%= link_to_back fallback_path: users_path %>
</div>
<h1 class="header__title"><%= @page_title %></h1>
<div class="header__actions header__actions--end">
<%= link_to new_workflow_path, class: "btn flex-item-justify-end" do %>
<%= icon_tag "add" %>
<span class="for-screen-reader">Create a new workflow</span>
<% end %>
</div>
<% end %>
<%= turbo_frame_tag :workflows do %>
<section class="center justify-center flex flex-wrap gap">
<%= render partial: "workflows/workflow", collection: @workflows %>
</section>
<% end %>