mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
22 lines
778 B
Text
22 lines
778 B
Text
//-
|
|
XXX This template can't be transformed into a component because it is
|
|
included by iron-router. That's a bug.
|
|
See https://github.com/peerlibrary/meteor-blaze-components/issues/44
|
|
template(name="boards")
|
|
+boardList
|
|
|
|
template(name="boardList")
|
|
if boards.count
|
|
ul.board-list.clearfix
|
|
each boards
|
|
li(class="{{#if isStarred}}starred{{/if}}" class=colorClass)
|
|
a.js-open-board(href="{{ pathFor route='Board' boardId=_id }}")
|
|
span.details
|
|
span.board-list-item-name= title
|
|
i.fa.fa-star-o.js-star-board(
|
|
class="{{#if isStarred}}is-star-active{{/if}}"
|
|
title="{{_ 'star-board-title'}}")
|
|
else
|
|
ul.board-list.clearfix
|
|
li.js-add-board
|
|
a.label {{_ 'add-board'}}
|