mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
16 lines
No EOL
328 B
Text
16 lines
No EOL
328 B
Text
extends /templates/base
|
|
|
|
block content
|
|
|
|
h1(data-i18n="admin.clas") CLAs
|
|
|
|
table.table.table-striped.table-bordered.table-condensed#clas
|
|
tbody
|
|
each cla in clas
|
|
tr
|
|
td #{cla.name}
|
|
if me.isAdmin()
|
|
td #{cla.email}
|
|
td #{cla.githubUsername}
|
|
td #{cla.created}
|
|
|