debian-mirror-gitlab/app/views/shared/boards/_show.html.haml

22 lines
691 B
Text
Raw Normal View History

2018-03-27 19:54:05 +05:30
- board = local_assigns.fetch(:board, nil)
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
2021-11-11 11:23:49 +05:30
#js-issuable-board-app{ data: board_data }