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.
 
 
 
 
 
 
wekan/client/components/users/userHeader.jade

48 lines
1.3 KiB

template(name="headerUserBar")
a#header-user-bar
.header-user-bar-name.js-open-header-member-menu
i.fa.fa-chevron-down
if currentUser.profile.name
= currentUser.profile.name
else
= currentUser.username
.header-user-bar-avatar.js-change-avatar
+userAvatar(user=currentUser)
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.name 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="changeAvatarPopup")
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