Semaphore/public/html/projects/users/list.jade
Matej Kramny fcc332dffc Fix ws logs, output updates from ws
- raw output option for logs (no time prefix)
- fix ws logging
- status updates from ws
2016-05-17 20:12:54 +01:00

16 lines
455 B
Plaintext

h3 Team
button.btn.btn-success.pull-right.btn-xs(ng-click="addUser()") add team member
table.table
thead: tr
th Name
th Username
th Email
th Admin
th  
tbody: tr(ng-repeat="u in users" ng-class="{ info: u.id == user.data.id }")
td {{ u.name }}
td {{ u.username }}
td {{ u.email }}
td: i.fa.fa-fw(ng-class="{ 'fa-times': !u.admin, 'fa-check': u.admin }")
td: button.btn.btn-danger.pull-right.btn-xs(ng-click="remove(u)") remove