Files
fizzy/app/views/boards/show.html.erb
T
Adrien Maston 0b229c701b Rename event
2026-02-23 16:10:54 +01:00

35 lines
1.2 KiB
Plaintext

<% @page_title = @board.name %>
<% @body_class = "contained-scrolling" %>
<% turbo_exempts_page_from_cache %>
<%= turbo_stream_from @board %>
<% content_for :header do %>
<div class="header__actions header__actions--start hide-on-native">
<%= link_to_webhooks(@board) if Current.user.admin? %>
</div>
<h1 class="header__title divider divider--fade full-width" data-bridge--title-target="header">
<span class="overflow-ellipsis"><%= @board.name %></span>
</h1>
<div class="header__actions header__actions--end hide-on-native">
<%= link_to_edit_board @board %>
</div>
<% end %>
<%= render "filters/settings", filter_url: board_path(@board), user_filtering: @user_filtering, no_filtering_url: board_path(@board) do |form| %>
<%= hidden_field_tag "board_ids[]", @board.id %>
<% end %>
<%= turbo_frame_tag :cards_container do %>
<% if @filter.used?(ignore_boards: true) %>
<%= render "boards/show/filtered_cards", page: @page %>
<% else %>
<%= render "columns/show/add_card_button", board: @board %>
<%= render "boards/show/columns", page: @page, board: @board %>
<% end %>
<% end %>
<%= bridged_share_url_button(bridge_share_board_description(@board)) %>