Semaphore/public/html/projects/users.jade

15 lines
356 B
Plaintext
Raw Normal View History

h3 Users
2016-04-02 14:40:07 +02:00
table.table
thead: tr
th Name
th Username
th Email
th Admin
th  
2016-04-02 14:40:07 +02:00
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 }")
2016-04-02 14:40:07 +02:00
td: button.btn.btn-default.pull-right.btn-xs(ng-click="remove(user)") remove