2018-03-27 19:54:05 +05:30
|
|
|
- board = local_assigns.fetch(:board, nil)
|
|
|
|
- group = local_assigns.fetch(:group, false)
|
2018-03-17 18:26:18 +05:30
|
|
|
- @no_breadcrumb_container = true
|
2017-08-17 22:00:37 +05:30
|
|
|
- @no_container = true
|
2021-09-30 23:02:18 +05:30
|
|
|
- @content_wrapper_class = "#{@content_wrapper_class} gl-relative"
|
2018-11-08 19:23:39 +05:30
|
|
|
- @content_class = "issue-boards-content js-focus-mode-board"
|
2021-10-27 15:23:28 +05:30
|
|
|
- is_epic_board = board.to_type == "EpicBoard"
|
|
|
|
- if is_epic_board
|
2021-03-11 19:13:27 +05:30
|
|
|
- breadcrumb_title _("Epic Boards")
|
|
|
|
- else
|
|
|
|
- breadcrumb_title _("Issue Boards")
|
2021-06-08 01:23:25 +05:30
|
|
|
= render 'shared/alerts/positioning_disabled'
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
= content_for :after_content do
|
|
|
|
#js-right-sidebar-portal
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
- page_title("#{board.name}", _("Boards"))
|
2021-01-03 14:25:43 +05:30
|
|
|
- add_page_specific_style 'page_bundles/boards'
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
= render 'shared/issuable/search_bar', type: :boards, board: board
|
2019-07-31 22:56:46 +05:30
|
|
|
#board-app.boards-app.position-relative{ "v-cloak" => "true", data: board_data, ":class" => "{ 'is-compact': detailIssueVisible }" }
|
2021-04-29 21:17:54 +05:30
|
|
|
%board-content{ ":lists" => "state.lists", ":disabled" => "disabled" }
|
2021-10-27 15:23:28 +05:30
|
|
|
- if !is_epic_board && !Feature.enabled?(:graphql_board_lists, default_enabled: :yaml)
|
|
|
|
= render "shared/boards/components/sidebar", group: group
|
2021-04-29 21:17:54 +05:30
|
|
|
%board-settings-sidebar
|