diff options
author | Yasar icli <hello@yasaricli.com> | 2015-07-18 13:33:15 +0300 |
---|---|---|
committer | Yasar icli <hello@yasaricli.com> | 2015-07-18 13:33:15 +0300 |
commit | 2fb317d753cdf5612d9b90428c223deae683c97b (patch) | |
tree | a106f6fb481fca76f91d01be89413f9fe95b1f63 /client/components/boards/boardList.jade | |
parent | d7cb933925243d41d25314c34d34a21d8a701a6b (diff) | |
download | wekan-2fb317d753cdf5612d9b90428c223deae683c97b.tar.gz wekan-2fb317d753cdf5612d9b90428c223deae683c97b.tar.bz2 wekan-2fb317d753cdf5612d9b90428c223deae683c97b.zip |
if not then the board list create board show button.
Diffstat (limited to 'client/components/boards/boardList.jade')
-rw-r--r-- | client/components/boards/boardList.jade | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/client/components/boards/boardList.jade b/client/components/boards/boardList.jade index e133f73c..e92cad2d 100644 --- a/client/components/boards/boardList.jade +++ b/client/components/boards/boardList.jade @@ -6,7 +6,7 @@ template(name="boards") +boardList template(name="boardList") - if boards + if boards.count ul.board-list.clearfix each boards li(class="{{#if isStarred}}starred{{/if}}" class=colorClass) @@ -17,5 +17,6 @@ template(name="boardList") class="{{#if isStarred}}is-star-active{{/if}}" title="{{_ 'star-board-title'}}") else - p.quiet {{_ 'no-boards'}} - button.js-add-board {{_ 'add-board'}} + ul.board-list.clearfix + li.js-add-board + a.label {{_ 'add-board'}} |