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.
9 lines
474 B
9 lines
474 B
include user-icon
|
|
mixin renderUserListItem (user, options)
|
|
- options = Object.assign({ iconClass: 'sb-xxsmall' }, options);
|
|
div(uk-grid).uk-grid-small
|
|
.uk-width-auto
|
|
+renderUserIcon(user, options)
|
|
.uk-width-expand
|
|
div(uk-tooltip= user.displayName || user.username).streamray-display-name.uk-text-truncate= user.displayName || user.username
|
|
div(uk-tooltip= user.username_lc).uk-text-small.streamray-username.uk-text-truncate @#{user.username_lc}
|