mirror of
https://github.com/wekan/wekan.git
synced 2026-03-13 00:46:14 +01:00
More explicit file names
This commit is contained in:
parent
29e93162c2
commit
b5dabfe886
18 changed files with 7 additions and 6 deletions
29
client/components/lists/listMenu.jade
Normal file
29
client/components/lists/listMenu.jade
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
template(name="listActionPopup")
|
||||
ul.pop-over-list
|
||||
li: a.js-add-card {{_ 'add-card'}}
|
||||
li: a.highlight-icon.js-list-subscribe {{_ 'subscribe'}}
|
||||
if cards.count
|
||||
hr
|
||||
ul.pop-over-list
|
||||
li: a.js-select-cards {{_ 'list-select-cards'}}
|
||||
li: a.js-move-cards {{_ 'list-move-cards'}}
|
||||
li: a.js-archive-cards {{_ 'list-archive-cards'}}
|
||||
hr
|
||||
ul.pop-over-list
|
||||
li: a.js-close-list {{_ 'archive-list'}}
|
||||
|
||||
template(name="listMoveCardsPopup")
|
||||
+boardLists
|
||||
|
||||
template(name="boardLists")
|
||||
ul.pop-over-list
|
||||
each currentBoard.lists
|
||||
li
|
||||
if($eq ../_id _id)
|
||||
a.disabled {{title}} ({{_ 'current'}})
|
||||
else
|
||||
a.js-select-list= title
|
||||
|
||||
template(name="listArchiveCardsPopup")
|
||||
p {{_ 'list-archive-cards-pop'}}
|
||||
input.js-confirm.negate.full(type="submit" value="{{_ 'archive-all'}}")
|
||||
Loading…
Add table
Add a link
Reference in a new issue