Files
fizzy/app/views/boards/columns/not_nows/show.html.erb
T

26 lines
828 B
Plaintext

<% @page_title = "Column: Not Now" %>
<% content_for :header do %>
<div class="header__actions header__actions--start">
<%= link_back_to_board(@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 :not_now_column do %>
<div class="cards__list hide-scrollbar" data-drag-drop-item-container>
<% if @page.used? %>
<%= with_automatic_pagination :not_now_column, @page do %>
<%= render "cards/display/previews", cards: @page.records, draggable: true %>
<% end %>
<% else %>
<%= render "boards/columns/empty_placeholder" %>
<% end %>
</div>
<% end %>
</section>