wekan/client/components/users/userHeader.jade
Maxime Quandalle 8cf9ec2660 Allow a user to edit its profile or avatar from a member popover
Fixes the data context on the member popover in the details pane. Also
change the way Popover detect if the click is initiated from a parent
popover -- from reading Blaze context, to looking at the event target
parents.
2015-06-19 14:39:38 +02:00

46 lines
1.3 KiB
Text

template(name="headerUserBar")
#header-user-bar
a.header-user-bar-name.js-open-header-member-menu
i.fa.fa-chevron-down
if currentUser.profile.name
= currentUser.profile.name
else
= currentUser.username
a.header-user-bar-avatar.js-change-avatar
+userAvatar(userId=currentUser._id)
template(name="memberMenuPopup")
ul.pop-over-list
with currentUser
li: a.js-edit-profile Edit Profile…
li: a.js-change-avatar Change Avatar…
li: a.js-change-password Change Password…
li: a.js-change-language Change Language…
hr
ul.pop-over-list
li: a.js-logout {{_ 'log-out'}}
template(name="editProfilePopup")
form
label
| {{_ "fullname"}}
input.js-profile-fullname(type="text" value=profile.fullname autofocus)
label
| {{_ "username"}}
input.js-profile-username(type="text" value=username)
label
| Initials
input.js-profile-initials(type="text" value=profile.initials)
input.primary.wide(type="submit" value="{{_ 'save'}}")
template(name="changePasswordPopup")
+atForm(state='changePwd')
template(name="changeLanguagePopup")
ul.pop-over-list
each languages
li(class="{{# if isCurrentLanguage}}active{{/if}}")
a.js-set-language
= name
if isCurrentLanguage
i.fa.fa-check