mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-23 08:41:20 +01:00
fcc332dffc
- raw output option for logs (no time prefix) - fix ws logging - status updates from ws
16 lines
455 B
Plaintext
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 |