26 lines
853 B
Plaintext
26 lines
853 B
Plaintext
<% @page_title = "Column: #{ @column.name }" %>
|
|
|
|
<% content_for :header do %>
|
|
<div class="header__actions header__actions--start">
|
|
<%= link_back_to_board(@column.board) %>
|
|
</div>
|
|
|
|
<h1 class="header__title divider divider--fade full-width" data-bridge--title-target="header">
|
|
<span class="overflow-ellipsis"><%= @page_title %></span>
|
|
</h1>
|
|
<% end %>
|
|
|
|
<section class="cards cards--grid">
|
|
<%= turbo_frame_tag @column, :cards do %>
|
|
<div class="cards__list hide-scrollbar" data-drag-drop-item-container>
|
|
<% if @page.used? %>
|
|
<%= with_automatic_pagination dom_id(@column, :cards), @page do %>
|
|
<%= render "cards/display/previews", cards: @page.records, draggable: true %>
|
|
<% end %>
|
|
<% else %>
|
|
<%= render "boards/columns/empty_placeholder" %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
</section>
|