mirror of
https://github.com/wekan/wekan.git
synced 2025-12-16 15:30:13 +01:00
16 lines
596 B
Text
16 lines
596 B
Text
template(name="boardList")
|
|
.wrapper
|
|
if boards.count
|
|
ul.board-list.clearfix
|
|
each boards
|
|
li(class="{{#if isStarred}}starred{{/if}}" class=colorClass)
|
|
a.js-open-board(href="{{pathFor 'board' id=_id slug=slug}}")
|
|
span.details
|
|
span.board-list-item-name= title
|
|
i.fa.js-star-board(
|
|
class="fa-star{{#if isStarred}} is-star-active{{else}}-o{{/if}}"
|
|
title="{{_ 'star-board-title'}}")
|
|
else
|
|
ul.board-list.clearfix
|
|
li.js-add-board
|
|
a.label {{_ 'add-board'}}
|