Files
fizzy/app/views/public/boards/columns/closeds/show.html.erb
T
2026-01-06 16:03:28 +01:00

28 lines
897 B
Plaintext

<% @page_title = "Column: Done" %>
<% content_for :header do %>
<div class="header__actions header__actions--start">
<%= back_link_to @board.name, published_board_url(@board), "keydown.left@document->hotkey#click keydown.esc@document->hotkey#click" %>
</div>
<h1 class="header__title divider divider--fade full-width" data-bridge--page-target="header">
<span class="overflow-ellipsis"><%= @page_title %></span>
</h1>
<% end %>
<section class="cards cards--grid">
<%= turbo_frame_tag :closed_column do %>
<% if @page.used? %>
<%= with_automatic_pagination :closed_column, @page do %>
<%= render "public/boards/columns/list", cards: @page.records %>
<% end %>
<% else %>
<div class="blank-slate blank-slate--empty">No cards here</div>
<% end %>
<% end %>
</section>
<% content_for :footer do %>
<%= render "public/footer" %>
<% end %>