2016-11-04 06:24:59 -04:00
|
|
|
- @no_container = true
|
|
|
|
- @content_class = "issue-boards-content"
|
|
|
|
- page_title "Boards"
|
|
|
|
|
2017-06-30 12:52:11 -04:00
|
|
|
- if show_new_nav?
|
2017-07-07 16:50:34 -04:00
|
|
|
- add_to_breadcrumbs("Issues", project_issues_path(@project))
|
2017-06-30 12:52:11 -04:00
|
|
|
|
2016-11-04 06:24:59 -04:00
|
|
|
- content_for :page_specific_javascripts do
|
2017-05-10 17:11:23 -04:00
|
|
|
= webpack_bundle_tag 'common_vue'
|
|
|
|
= webpack_bundle_tag 'filtered_search'
|
|
|
|
= webpack_bundle_tag 'boards'
|
2016-11-04 06:24:59 -04:00
|
|
|
|
|
|
|
%script#js-board-template{ type: "text/x-template" }= render "projects/boards/components/board"
|
2017-03-10 07:08:19 -05:00
|
|
|
%script#js-board-modal-filter{ type: "text/x-template" }= render "shared/issuable/search_bar", type: :boards_modal
|
2016-11-04 06:24:59 -04:00
|
|
|
|
|
|
|
= render "projects/issues/head"
|
|
|
|
|
2017-03-08 09:00:28 -05:00
|
|
|
.hidden-xs.hidden-sm
|
|
|
|
= render 'shared/issuable/search_bar', type: :boards
|
2016-11-04 06:24:59 -04:00
|
|
|
|
|
|
|
#board-app.boards-app{ "v-cloak" => true, data: board_data }
|
|
|
|
.boards-list{ ":class" => "{ 'is-compact': detailIssueVisible }" }
|
|
|
|
.boards-app-loading.text-center{ "v-if" => "loading" }
|
|
|
|
= icon("spinner spin")
|
|
|
|
%board{ "v-cloak" => true,
|
|
|
|
"v-for" => "list in state.lists",
|
|
|
|
"ref" => "board",
|
|
|
|
":list" => "list",
|
|
|
|
":disabled" => "disabled",
|
|
|
|
":issue-link-base" => "issueLinkBase",
|
2017-01-31 05:39:44 -05:00
|
|
|
":root-path" => "rootPath",
|
2017-05-31 07:34:54 -04:00
|
|
|
":board-id" => "boardId",
|
2016-11-04 06:24:59 -04:00
|
|
|
":key" => "_uid" }
|
|
|
|
= render "projects/boards/components/sidebar"
|
2017-01-26 06:29:04 -05:00
|
|
|
%board-add-issues-modal{ "blank-state-image" => render('shared/empty_states/icons/issues.svg'),
|
2017-06-29 13:06:35 -04:00
|
|
|
"new-issue-path" => new_project_issue_path(@project),
|
2017-02-01 12:26:03 -05:00
|
|
|
"milestone-path" => milestones_filter_dropdown_path,
|
|
|
|
"label-path" => labels_filter_path,
|
2017-01-31 05:39:44 -05:00
|
|
|
":issue-link-base" => "issueLinkBase",
|
2017-01-31 06:48:43 -05:00
|
|
|
":root-path" => "rootPath",
|
|
|
|
":project-id" => @project.try(:id) }
|