mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
14 lines
257 B
Text
14 lines
257 B
Text
|
extends /templates/base
|
||
|
|
||
|
block content
|
||
|
|
||
|
h1 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}
|