eae17b82b4
* main: (65 commits) Repair scope for card styles within the columns view Add missing list to cards page Account for simpler public views Fix public layout Pull board-tools outside of the list for mobile saas: move log_level setting into an environment variable Restore log level configurability in production environment Remove engagements Use notch class so Save button is positioned correctly Go back to board after clearing filters Revert "Use existing no_filtering_url to direct back to the board when clearing filters" Use existing no_filtering_url to direct back to the board when clearing filters Ensure filters sit on top of cards Fix public boards Fix card grid layout Fix Chinese/Japanese characters missing from printed PDFs on macOS Add SQLite FTS5 support for CJK search Add CJK (Chinese, Japanese, Korean) search support Fix scrolling on mobile Remember expanded state on navigation ...
26 lines
852 B
Plaintext
26 lines
852 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--page-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>
|