gitlab-org--gitlab-foss/app/views/projects/boards/components/_blank_state.html.haml

16 lines
744 B
Plaintext
Raw Normal View History

2016-08-08 10:24:57 +00:00
%board-blank-state{ "inline-template" => true,
"v-if" => "list.id == 'blank'" }
2016-08-02 08:58:09 +00:00
.board-blank-state
%p
Add the following default lists to your Issue Board with one click:
%ul.board-blank-state-list
%li{ "v-for" => "label in predefinedLabels" }
%span.label-color{ ":style" => "{ backgroundColor: label.color } " }
{{ label.title }}
2016-08-02 08:58:09 +00:00
%p
Starting out with the default set of lists will get you right on the way to making the most of your board.
2016-08-15 07:36:37 +00:00
%button.btn.btn-create.btn-inverted.btn-block{ type: "button", "@click.stop" => "addDefaultLists" }
2016-08-02 08:58:09 +00:00
Add default lists
2016-08-15 07:36:37 +00:00
%button.btn.btn-default.btn-block{ type: "button", "@click.stop" => "clearBlankState" }
Nevermind, I'll use my own