Semaphore/public/html/users/list.jade

16 lines
437 B
Plaintext
Raw Normal View History

.container-fluid: .row: .col-sm-12
h3.no-top-margin Users
2016-04-29 14:05:38 +02:00
button.btn.btn-primary.pull-right(ng-click="addUser()") New User
table.table.table-hover
thead: tr
th Name
th Username
th Email
tr(ng-repeat="u in users" ng-class="{ info: u.id == user.id }" ui-sref="users.user({ user_id: u.id })" style="cursor: pointer;")
td {{ u.name }}
td {{ u.username }}
td {{ u.email }}
p(ng-show="users.length == 0") No Users