mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
13 lines
284 B
Text
13 lines
284 B
Text
extends /templates/base
|
|
|
|
block content
|
|
|
|
h1(data-i18n="admin.u_title") User List
|
|
|
|
table.table.table-striped.table-bordered.table-condensed#users
|
|
tbody
|
|
each user in users
|
|
tr
|
|
td #{user.name}
|
|
td #{user.email}
|
|
td #{user.dateCreated}
|