Files
fizzy/app/views/workflows/index.html.erb
T
2025-09-04 15:24:55 -05:00

31 lines
980 B
Plaintext

<% @page_title = "Workflows" %>
<% content_for :header do %>
<%= render "filters/menu", user_filtering: @user_filtering %>
<h1 class="header__title"><%= @page_title %></h1>
<div class="header__actions header__actions--end">
<%= link_to new_workflow_path, class: "btn" do %>
<%= icon_tag "add" %>
<span class="for-screen-reader">Create a new workflow</span>
<% end %>
</div>
<% end %>
<section class="center justify-center flex flex-wrap gap">
<% if @workflows.any? %>
<%= render partial: "workflows/workflow", collection: @workflows %>
<% else %>
<div>
<p class="txt-medium txt-align-center">
Workflows are for organizing Cards you're working on into stages.
</p>
<p class="txt-medium txt-align-center">
<%= link_to new_workflow_path, class: "btn btn--link" do %>
<%= icon_tag "add" %>
<span>Create a new workflow</span>
<% end %>
</p>
</div>
<% end %>
</section>