diff options
author | Maxime Quandalle <maxime@quandalle.com> | 2015-08-28 06:21:30 +0200 |
---|---|---|
committer | Maxime Quandalle <maxime@quandalle.com> | 2015-08-28 06:22:35 +0200 |
commit | 691c3aff684e945add6a4c1a119094e77fa32e6c (patch) | |
tree | cb00e5e887649749ec9734a6e1bdedd8868d161c /client/components/lists/listHeader.jade | |
parent | 91cfcf7b12b5e7c137c2e765b2c378dde6b82966 (diff) | |
download | wekan-691c3aff684e945add6a4c1a119094e77fa32e6c.tar.gz wekan-691c3aff684e945add6a4c1a119094e77fa32e6c.tar.bz2 wekan-691c3aff684e945add6a4c1a119094e77fa32e6c.zip |
Improve the list menu
* Grow the click-able zone of the list menu
* Remove a dead link on the list menu
* Merge list menu files with header menu to be consistent with the
board components internal organization
Closes #106
Diffstat (limited to 'client/components/lists/listHeader.jade')
-rw-r--r-- | client/components/lists/listHeader.jade | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/client/components/lists/listHeader.jade b/client/components/lists/listHeader.jade index 288cfd57..00b574da 100644 --- a/client/components/lists/listHeader.jade +++ b/client/components/lists/listHeader.jade @@ -14,3 +14,30 @@ template(name="editListTitleForm") .edit-controls.clearfix button.primary.confirm(type="submit") {{_ 'save'}} a.fa.fa-times-thin.js-close-inlined-form + +template(name="listActionPopup") + ul.pop-over-list + li: a.js-add-card {{_ 'add-card'}} + if cards.count + 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'}}") |