2014-03-21 16:22:47 -07:00
|
|
|
extends /templates/base
|
|
|
|
|
|
|
|
block content
|
|
|
|
|
2016-03-05 15:08:27 +00:00
|
|
|
h1 CLAs
|
|
|
|
|
2014-03-21 16:22:47 -07:00
|
|
|
table.table.table-striped.table-bordered.table-condensed#clas
|
|
|
|
tbody
|
2015-10-26 14:35:42 -07:00
|
|
|
- var models = view.clas.models
|
|
|
|
- var models = _.uniq(models, true, function(model) { return model.get('githubUsername'); });
|
|
|
|
each cla in models
|
2014-03-21 16:22:47 -07:00
|
|
|
tr
|
2015-10-26 14:35:42 -07:00
|
|
|
td #{cla.get('name')}
|
2014-03-21 17:20:47 -07:00
|
|
|
if me.isAdmin()
|
2015-10-26 14:35:42 -07:00
|
|
|
td #{cla.get('email')}
|
|
|
|
td #{cla.get('githubUsername')}
|
|
|
|
td #{cla.get('created')}
|
2016-03-05 15:08:27 +00:00
|
|
|
|