|
@@ -1,21 +1,22 @@
|
|
|
template(name="swimlane")
|
|
|
.swimlane.js-lists.js-swimlane
|
|
|
+swimlaneHeader
|
|
|
- if isMiniScreen
|
|
|
- if currentList
|
|
|
- +list(currentList)
|
|
|
+ .swimlane.list-group.js-lists
|
|
|
+ if isMiniScreen
|
|
|
+ if currentList
|
|
|
+ +list(currentList)
|
|
|
+ else
|
|
|
+ each currentBoard.lists
|
|
|
+ +miniList(this)
|
|
|
+ if currentUser.isBoardMember
|
|
|
+ +addListForm
|
|
|
else
|
|
|
each currentBoard.lists
|
|
|
- +miniList(this)
|
|
|
+ +list(this)
|
|
|
+ if currentCardIsInThisList _id ../_id
|
|
|
+ +cardDetails(currentCard)
|
|
|
if currentUser.isBoardMember
|
|
|
+addListForm
|
|
|
- else
|
|
|
- each currentBoard.lists
|
|
|
- +list(this)
|
|
|
- if currentCardIsInThisList _id ../_id
|
|
|
- +cardDetails(currentCard)
|
|
|
- if currentUser.isBoardMember
|
|
|
- +addListAndSwimlaneForm
|
|
|
|
|
|
template(name="listsGroup")
|
|
|
.swimlane.list-group.js-lists
|
|
@@ -35,19 +36,8 @@ template(name="listsGroup")
|
|
|
if currentUser.isBoardMember
|
|
|
+addListForm
|
|
|
|
|
|
-template(name="addListAndSwimlaneForm")
|
|
|
+template(name="addSwimlaneForm")
|
|
|
.list.list-composer.js-list-composer
|
|
|
- .list-header
|
|
|
- +inlinedForm(autoclose=false)
|
|
|
- input.list-name-input.full-line(type="text" placeholder="{{_ 'add-list'}}"
|
|
|
- autocomplete="off" autofocus)
|
|
|
- .edit-controls.clearfix
|
|
|
- button.primary.confirm(type="submit") {{_ 'save'}}
|
|
|
- a.fa.fa-times-thin.js-close-inlined-form
|
|
|
- else
|
|
|
- a.open-list-composer.js-open-inlined-form
|
|
|
- i.fa.fa-plus
|
|
|
- | {{_ 'add-list'}}
|
|
|
.list-header
|
|
|
+inlinedForm(autoclose=false)
|
|
|
input.swimlane-name-input.full-line(type="text" placeholder="{{_ 'add-swimlane'}}"
|