mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
First swimlane draft, no functionality
This commit is contained in:
parent
8b6a2eade3
commit
690a5b9703
16 changed files with 474 additions and 173 deletions
20
client/components/swimlanes/swimlanes.jade
Normal file
20
client/components/swimlanes/swimlanes.jade
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
template(name="swimlane")
|
||||
.swimlane.js-lists
|
||||
.swimlane-header-wrap
|
||||
.swimlane-header
|
||||
= title
|
||||
if isMiniScreen
|
||||
if currentList
|
||||
+list(currentList)
|
||||
else
|
||||
each currentBoard.lists
|
||||
+miniList(this)
|
||||
if currentUser.isBoardMember
|
||||
+addListForm
|
||||
else
|
||||
each currentBoard.lists
|
||||
+list(this)
|
||||
if currentCardIsInThisList
|
||||
+cardDetails(currentCard)
|
||||
if currentUser.isBoardMember
|
||||
+addListForm
|
||||
Loading…
Add table
Add a link
Reference in a new issue