mirror of https://github.com/wekan/wekan
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.
98 lines
3.5 KiB
98 lines
3.5 KiB
template(name="setting")
|
|
.setting-content
|
|
unless currentUser.isAdmin
|
|
| {{_ 'error-notAuthorized'}}
|
|
else
|
|
.content-title
|
|
span {{_ 'settings'}}
|
|
.content-body
|
|
.side-menu
|
|
ul
|
|
li.active
|
|
a.js-setting-menu(data-id="registration-setting") {{_ 'registration'}}
|
|
li
|
|
a.js-setting-menu(data-id="email-setting") {{_ 'email'}}
|
|
li
|
|
a.js-setting-menu(data-id="account-setting") {{_ 'accounts'}}
|
|
.main-body
|
|
if loading.get
|
|
+spinner
|
|
else if generalSetting.get
|
|
+general
|
|
else if emailSetting.get
|
|
+email
|
|
else if accountSetting.get
|
|
+accountSettings
|
|
|
|
template(name="general")
|
|
ul#registration-setting.setting-detail
|
|
li
|
|
a.flex.js-toggle-registration
|
|
.materialCheckBox(class="{{#if currentSetting.disableRegistration}}is-checked{{/if}}")
|
|
|
|
span {{_ 'disable-self-registration'}}
|
|
li
|
|
.invite-people(class="{{#if currentSetting.disableRegistration}}{{else}}hide{{/if}}")
|
|
ul
|
|
li
|
|
.title {{_ 'invite-people'}}
|
|
textarea#email-to-invite.form-control(rows='5', placeholder="{{_ 'email-addresses'}}")
|
|
li
|
|
.title {{_ 'to-boards'}}
|
|
.bg-white
|
|
each boards
|
|
a.option.flex.js-toggle-board-choose(id= _id)
|
|
.materialCheckBox(data-id= _id)
|
|
|
|
span= title
|
|
|
|
li
|
|
button.js-email-invite.primary {{_ 'invite'}}
|
|
|
|
template(name='email')
|
|
ul#email-setting.setting-detail
|
|
li.smtp-form
|
|
.title {{_ 'smtp-host'}}
|
|
.description {{_ 'smtp-host-description'}}
|
|
.form-group
|
|
input.form-control#mail-server-host(type="text", placeholder="smtp.domain.com" value="{{currentSetting.mailServer.host}}")
|
|
li.smtp-form
|
|
.title {{_ 'smtp-port'}}
|
|
.description {{_ 'smtp-port-description'}}
|
|
.form-group
|
|
input.form-control#mail-server-port(type="text", placeholder="25" value="{{currentSetting.mailServer.port}}")
|
|
li.smtp-form
|
|
.title {{_ 'smtp-username'}}
|
|
.form-group
|
|
input.form-control#mail-server-username(type="text", placeholder="{{_ 'username'}}" value="{{currentSetting.mailServer.username}}")
|
|
li.smtp-form
|
|
.title {{_ 'smtp-password'}}
|
|
.form-group
|
|
input.form-control#mail-server-password(type="text", placeholder="{{_ 'password'}}" value="{{currentSetting.mailServer.password}}")
|
|
li.smtp-form
|
|
.title {{_ 'smtp-tls'}}
|
|
.form-group
|
|
a.flex.js-toggle-tls
|
|
.materialCheckBox#mail-server-tls(class="{{#if currentSetting.mailServer.enableTLS}}is-checked{{/if}}")
|
|
|
|
span {{_ 'smtp-tls-description'}}
|
|
|
|
li.smtp-form
|
|
.title {{_ 'send-from'}}
|
|
.form-group
|
|
input.form-control#mail-server-from(type="email", placeholder="no-reply@domain.com" value="{{currentSetting.mailServer.from}}")
|
|
|
|
li
|
|
button.js-save.primary {{_ 'save'}}
|
|
|
|
template(name='accountSettings')
|
|
ul#account-setting.setting-detail
|
|
li.smtp-form
|
|
.title {{_ 'accounts-allowEmailChange'}}
|
|
.form-group.flex
|
|
input.form-control#accounts-allowEmailChange(type="radio" name="allowEmailChange" value="true" checked="{{#if allowEmailChange}}checked{{/if}}")
|
|
span {{_ 'yes'}}
|
|
input.form-control#accounts-allowEmailChange(type="radio" name="allowEmailChange" value="false" checked="{{#unless allowEmailChange}}checked{{/unless}}")
|
|
span {{_ 'no'}}
|
|
li
|
|
button.js-accounts-save.primary {{_ 'save'}}
|
|
|