Files
fizzy/app/views/workflows/index.html.erb
T
2025-06-26 14:54:27 -05:00

25 lines
733 B
Plaintext

<% @page_title = "Workflows" %>
<% content_for :header do %>
<nav class="header">
<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>
</nav>
<% end %>
<%= turbo_frame_tag :workflows do %>
<section class="center justify-center flex flex-wrap gap">
<%= render partial: "workflows/workflow", collection: @workflows %>
</section>
<% end %>