3b97b2e5c8
* main: (22 commits) Disable card column buttons when active Prevent comment content from overlapping with reaction button Delete pins belonging to cards in a board with revoked access Update development dependencies in SAAS lockfile Update runtime dependencies Update development dependencies Balance magic link instructions Add `.txt-balance` utility Move handleDesktop inside restoreColumnsDisablingTransitions Adjust border radius Clean up blank slates Add dialog manager to events page More sturated mini bubbles in light mode Brighten mini bubbles in dark mode Use separate cache namespaces for each beta instance Bump boost size up a tick on mobile Move Undo form inside closure message element Phrasing tweak for exceeding storage limit Keep strong tags words on same line Allow ActionText embed reuse and safe purge (#2346) ...
30 lines
1.1 KiB
Plaintext
30 lines
1.1 KiB
Plaintext
<% @page_title = @user_filtering.selected_boards_label %>
|
|
<% turbo_exempts_page_from_cache %>
|
|
|
|
<%= render "cards/broadcasts", filter: @filter %>
|
|
|
|
<% content_for :header do %>
|
|
<h1 class="header__title divider divider--fade full-width" data-bridge--title-target="header">
|
|
<span class="overflow-ellipsis txt-capitalize-first-letter"><%= @user_filtering.selected_boards_label %></span>
|
|
</h1>
|
|
|
|
<div class="header__actions header__actions--end">
|
|
<% if board = @filter.single_board %>
|
|
<%= link_to_edit_board board %>
|
|
<% end %>
|
|
</div>
|
|
<% end %>
|
|
|
|
<%= render "filters/settings", filter_url: cards_path, user_filtering: @user_filtering, no_filtering_url: cards_path %>
|
|
|
|
<%= turbo_frame_tag :cards_container do %>
|
|
<section class="cards cards--grid">
|
|
<div class="cards__list hide-scrollbar">
|
|
<%= with_automatic_pagination :cards_paginated_container, @page do %>
|
|
<%= render "cards/display/previews", cards: @page.records, draggable: true %>
|
|
<% end %>
|
|
<div class="blank-slate">No cards match this filter</div>
|
|
</div>
|
|
</section>
|
|
<% end %>
|