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.
14 lines
655 B
14 lines
655 B
mixin renderUserListItem (user)
|
|
div(uk-grid).uk-grid-small
|
|
.uk-width-auto
|
|
+renderProfileIcon(user)
|
|
.uk-width-expand
|
|
.uk-text-bold(style="line-height: 1;").uk-text-truncate= user.displayName || user.username
|
|
.uk-text-small.uk-text-muted
|
|
a(href= getUserProfileUrl(user))= user.username
|
|
.uk-text-small.uk-text-truncate= user.bio
|
|
.uk-text-small.uk-text-muted created #{moment(user.created).fromNow()}
|
|
.uk-width-auto
|
|
a(href=`/admin/user/local/${user._id}`, uk-tooltip={ title: 'Manage user account' }).uk-button.uk-button-default.uk-button-small.uk-border-rounded
|
|
span
|
|
i.fas.fa-wrench
|