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.
|
|
template(name="settingHeaderBar")
|
|
|
h1.header-setting-menu
|
|
|
span {{_ 'admin-panel'}}
|
|
|
|
|
|
.setting-header-btns.left
|
|
|
if currentUser
|
|
|
a.setting-header-btn.settings(class=isSettingsActive href="{{pathFor 'setting'}}")
|
|
|
span.emoji-icon ⚙️
|
|
|
span {{_ 'settings'}}
|
|
|
|
|
|
a.setting-header-btn.people(class=isPeopleActive href="{{pathFor 'people'}}")
|
|
|
span.emoji-icon 👥
|
|
|
span {{_ 'people'}}
|
|
|
|
|
|
a.setting-header-btn.informations(class=isAdminReportsActive href="{{pathFor 'admin-reports'}}")
|
|
|
span.emoji-icon 📋
|
|
|
span {{_ 'reports'}}
|
|
|
|
|
|
a.setting-header-btn.informations(class=isAttachmentsActive href="{{pathFor 'attachments'}}")
|
|
|
span.emoji-icon 📎
|
|
|
span {{_ 'attachments'}}
|
|
|
|
|
|
a.setting-header-btn.informations(class=isTranslationActive href="{{pathFor 'translation'}}")
|
|
|
span.emoji-icon 🔤
|
|
|
span {{_ 'translation'}}
|
|
|
|
|
|
a.setting-header-btn.informations(class=isInformationActive href="{{pathFor 'information'}}")
|
|
|
span.emoji-icon ℹ️
|
|
|
span {{_ 'info'}}
|
|
|
|
|
|
else
|
|
|
a.setting-header-btn.js-log-in(
|
|
|
title="{{_ 'log-in'}}")
|
|
|
span.emoji-icon 🚪
|
|
|
span {{_ 'log-in'}}
|
|
|
|