mirror of
https://github.com/semaphoreui/semaphore.git
synced 2025-01-22 16:20:44 +01:00
2e1ad91e7a
- Link models with tables - Basic API to fetch everything
15 lines
356 B
Plaintext
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 |