mirror of https://github.com/wekan/wekan
The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
942 B
37 lines
942 B
![]()
8 years ago
|
template(name="people")
|
||
|
.setting-content
|
||
|
unless currentUser.isAdmin
|
||
|
| {{_ 'error-notAuthorized'}}
|
||
|
else
|
||
|
.content-title
|
||
|
span {{_ 'people'}}
|
||
|
.content-body
|
||
|
.side-menu
|
||
|
ul
|
||
|
li.active
|
||
|
a.js-setting-menu(data-id="people-setting") {{_ 'people'}}
|
||
|
.main-body
|
||
|
if loading.get
|
||
|
+spinner
|
||
|
else if people.get
|
||
|
+peopleGeneral
|
||
|
|
||
|
template(name="peopleGeneral")
|
||
|
table
|
||
|
tbody
|
||
|
each user in peopleList
|
||
|
tr
|
||
|
th {{_ 'username'}}
|
||
|
th {{_ 'fullname'}}
|
||
|
th {{_ 'isAdmin'}}
|
||
|
th {{_ 'email'}}
|
||
|
th {{_ 'verified'}}
|
||
|
th {{_ 'createdAt'}}
|
||
|
tr
|
||
|
td {{ user.username }}
|
||
|
td {{ user.profile.fullname }}
|
||
|
td {{ user.isAdmin }}
|
||
|
td {{ user.emails.[0].address }}
|
||
|
td {{ user.emails.[0].verified }}
|
||
|
td {{ user.createdAt }}
|