consensus
Version:
vote for topics for your next meeting
36 lines (33 loc) • 749 B
text/jade
extends layout
mixin agendaRow(agenda)
tr
td
a(href="/agendas/#{agenda.key}")= agenda.title
td
a(href="/u/#{agenda.owner_id}")= agenda.owner_id
block content
- if (person.avatar)
.row
.col-xs-2
- if (person.avatar)
.avatar(style='background-image: url("#{person.avatar}?size=large")')
.col-xs-10
h2= person.displayName()
p= person.email
.well!= description
- else
h2= person.displayName()
p= person.email
.well!= description
.clearfix
- if (agendas.length > 0)
h3 Agendas of interest
table.table.table-striped.table-bordered.color2
tr
th Name
th Owner
- each agenda in locals.agendas
+agendaRow(agenda)
- else
p= person.displayName()
| isn't tracking any agendas yet.