Semaphore/public/html/projects/users.jade
Matej Kramny 2e1ad91e7a Running tasks
- Link models with tables
- Basic API to fetch everything
2016-04-07 13:49:34 +01:00

15 lines
356 B
Plaintext

h3 Users
table.table
thead: tr
th Name
th Username
th Email
th Admin
th  
tbody: tr(ng-repeat="user in users")
td {{ user.name }}
td {{ user.username }}
td {{ user.email }}
td: i.fa.fa-fw(ng-class="{ 'fa-times': !user.admin, 'fa-check': user.admin }")
td: button.btn.btn-default.pull-right.btn-xs(ng-click="remove(user)") remove