mirror of
https://github.com/wekan/wekan.git
synced 2025-12-30 14:18:48 +01:00
24 lines
830 B
Text
24 lines
830 B
Text
|
|
template(name="userAvatar")
|
||
|
|
.member(class="{{class}} {{# if draggable }}js-member{{else}}js-member-on-card-menu{{/if}}"
|
||
|
|
title="{{userData.profile.name}} ({{userData.username}})")
|
||
|
|
+avatar(user=userData size=size)
|
||
|
|
if showStatus
|
||
|
|
span.member-presence-status(class=presenceStatusClassName)
|
||
|
|
span.member-type(class=memberType)
|
||
|
|
|
||
|
|
|
||
|
|
template(name="userPopup")
|
||
|
|
.board-member-menu
|
||
|
|
.mini-profile-info
|
||
|
|
+userAvatar(user=user)
|
||
|
|
.info
|
||
|
|
h3.bottom
|
||
|
|
a.js-profile(href="{{ pathFor route='Profile' username=user.username }}")= user.profile.name
|
||
|
|
p.quiet.bottom @{{ user.username }}
|
||
|
|
|
||
|
|
template(name="memberName")
|
||
|
|
a.inline-object.js-show-mem-menu(href="{{ pathFor route='Profile' username=user.username }}")
|
||
|
|
= user.profile.name
|
||
|
|
if username
|
||
|
|
| ({{ user.username }})
|