mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
template(name="brokenCardsHeaderBar")
|
|
h1
|
|
| {{_ 'broken-cards'}}
|
|
|
|
template(name="brokenCards")
|
|
.wrapper
|
|
.broken-cards-wrapper
|
|
each card in brokenCardsList
|
|
.broken-cards-card-wrapper
|
|
.broken-cards-card-title
|
|
= card.title
|
|
ul.broken-cards-context-list
|
|
li.broken-cards-context(title="{{_ 'board'}}")
|
|
if card.boardId
|
|
+viewer
|
|
= card.getBoard.title
|
|
else
|
|
.broken-cards-null
|
|
| NULL
|
|
li.broken-cards-context.broken-cards-context-separator
|
|
= ' '
|
|
| {{_ 'context-separator'}}
|
|
= ' '
|
|
li.broken-cards-context(title="{{_ 'swimlane'}}")
|
|
if card.swimlaneId
|
|
+viewer
|
|
= card.getSwimlane.title
|
|
else
|
|
.broken-cards-null
|
|
| NULL
|
|
li.broken-cards-context
|
|
= ' '
|
|
| {{_ 'context-separator'}}
|
|
= ' '
|
|
li.broken-cards-context(title="{{_ 'list'}}")
|
|
if card.listId
|
|
+viewer
|
|
= card.getList.title
|
|
else
|
|
.broken-cards-null
|
|
| NULL
|
|
|