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