codecombat/app/templates/admin/clas.jade

18 lines
496 B
Text
Raw Normal View History

2014-03-21 19:22:47 -04:00
extends /templates/base
block content
h1(data-i18n="admin.clas") CLAs
table.table.table-striped.table-bordered.table-condensed#clas
tbody
- 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
td #{cla.get('name')}
if me.isAdmin()
td #{cla.get('email')}
td #{cla.get('githubUsername')}
td #{cla.get('created')}
2014-03-21 19:22:47 -04:00