mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 23:40:13 +01:00
* add user menu entry (needs icon) * format list * add new translation slugs to English and Arabic
29 lines
699 B
Text
29 lines
699 B
Text
template(name="myCardsHeaderBar")
|
|
h1
|
|
a.back-btn(href="{{pathFor 'home'}}")
|
|
i.fa.fa-chevron-left
|
|
| {{_ 'my-cards'}}
|
|
|
|
template(name="myCardsModalTitle")
|
|
h2
|
|
i.fa.fa-keyboard-o
|
|
| {{_ 'my-cards'}}
|
|
|
|
template(name="myCards")
|
|
.wrapper
|
|
each board in cardsFind
|
|
.board-title
|
|
| {{_ 'board' }}:
|
|
= board.title
|
|
each swimlane in board.swimlanes
|
|
.swimlane-title
|
|
| {{_ 'swimlane' }}:
|
|
= swimlane.title
|
|
each list in swimlane.lists
|
|
.list-title
|
|
| {{_ 'list' }}:
|
|
= list.title
|
|
each card in list.cards
|
|
.card-title
|
|
| {{_ 'card' }}:
|
|
= card.title
|