summaryrefslogtreecommitdiffstats
path: root/client/components/boards/body.jade
blob: b157b7428e4dbb5570deb195171f0d1548b3158a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//-
  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="board")
  +boardComponent

template(name="boardComponent")
  if this
    .board-wrapper(class=colorClass)
      .board-canvas(class=sidebarSize)
        .lists.js-lists
          each lists
            +list(this)
            if currentCardIsInThisList
              +cardDetails(currentCard)
          if currentUser.isBoardMember
            +addListForm
      +sidebar
  else
    +message(label="board-no-found")

template(name="addListForm")
  .list.js-list.list-composer.js-list-composer
    +inlinedForm(autoclose=false)
      input.list-name-input(type="text" placeholder="{{_ 'add-list'}}"
        autocomplete="off" autofocus value=getCache)
      div.edit-controls.clearfix
        button.primary.confirm.js-save-edit(type="submit") {{_ 'save'}}
        a.fa.fa-times.dark-hover.cancel.js-close-inlined-form
    else
      .js-open-inlined-form
        i.fa.fa-plus
        | {{_ 'add-list'}}