2014-09-20 11:49:04 -04:00
|
|
|
.page-header
|
|
|
|
h2 {{'options_tab_ui' | tr}}
|
|
|
|
section.settings-group
|
|
|
|
h3 {{'options_group_miscOptions' | tr}}
|
|
|
|
div.checkbox
|
|
|
|
label
|
|
|
|
input(type='checkbox' ng-model='options["-confirmDeletion"]')
|
|
|
|
span {{'options_confirmDeletion' | tr}}
|
|
|
|
div.checkbox
|
|
|
|
label
|
|
|
|
input#refresh-on-profile-change(type='checkbox' ng-model='options["-refreshOnProfileChange"]')
|
|
|
|
span {{'options_refreshOnProfileChange' | tr}}
|
2014-12-22 06:34:24 -05:00
|
|
|
div.checkbox
|
|
|
|
label
|
|
|
|
input(type='checkbox' ng-model='options["-showInspectMenu"]')
|
|
|
|
span {{'options_showInspectMenu' | tr}}
|
2017-08-19 00:31:13 -04:00
|
|
|
div.checkbox
|
|
|
|
label
|
|
|
|
input(type='checkbox' ng-model='options["-addConditionsToBottom"]')
|
|
|
|
span {{'options_addConditionsToBottom' | tr}}
|
2015-02-03 00:43:37 -05:00
|
|
|
section.settings-group
|
|
|
|
h3 {{'options_group_keyboardShortcut' | tr}}
|
|
|
|
p
|
|
|
|
button.btn.btn-default(type='button' role='button' ng-click='openShortcutConfig()')
|
|
|
|
span.glyphicon.glyphicon-share-alt
|
|
|
|
= ' '
|
|
|
|
| {{'options_menuShortcutConfigure' | tr}}
|
|
|
|
= ' '
|
|
|
|
| {{'options_menuShortcutHelp' | tr}}
|
|
|
|
p.help-block
|
|
|
|
| {{'options_menuShortcutMore' | tr}}
|
2014-09-20 11:49:04 -04:00
|
|
|
section.settings-group
|
|
|
|
h3 {{'options_group_switchOptions' | tr}}
|
|
|
|
div.form-group
|
|
|
|
label {{'options_startupProfile' | tr}}
|
2014-10-01 05:36:29 -04:00
|
|
|
= ' '
|
|
|
|
div(omega-profile-select='options | profiles:"all"' ng-model='options["-startupProfileName"]'
|
2014-10-27 09:16:57 -04:00
|
|
|
default-text="{{'options_startupProfile_none' | tr}}" disp-name='dispNameFilter'
|
2014-10-27 10:42:23 -04:00
|
|
|
style='display: inline-block;' options='options')
|
2014-10-08 06:43:57 -04:00
|
|
|
div.checkbox
|
|
|
|
label
|
2017-08-18 21:22:54 -04:00
|
|
|
input(type='checkbox' ng-model='options["-showConditionTypes"]' ng-true-value='1' ng-false-value='0')
|
2014-10-08 06:43:57 -04:00
|
|
|
span {{'options_showConditionTypesAdvanced' | tr}}
|
|
|
|
p.help-block
|
|
|
|
| {{'options_showConditionTypesAdvancedHelp' | tr}}
|
2014-09-20 11:49:04 -04:00
|
|
|
div.checkbox
|
|
|
|
label
|
|
|
|
input(type='checkbox' ng-model='options["-enableQuickSwitch"]')
|
|
|
|
span {{'options_quickSwitch' | tr}}
|
|
|
|
#quick-switch-settings.settings-group(ng-show='options["-enableQuickSwitch"]' ng-controller='QuickSwitchCtrl')
|
|
|
|
h4 {{'options_cycledProfiles' | tr}}
|
|
|
|
p.help-block {{'options_cycledProfilesHelp' | tr}}
|
|
|
|
div.has-error(ng-show='options["-quickSwitchProfiles"].length < 2')
|
|
|
|
p.help-block {{'options_cycledProfilesTooFew' | tr}}
|
|
|
|
ul.cycle-profile-container.cycle-enabled(ui-sortable="sortableOptions"
|
|
|
|
ng-model='options["-quickSwitchProfiles"]')
|
|
|
|
li(ng-repeat='name in options["-quickSwitchProfiles"]')
|
2014-10-27 10:42:23 -04:00
|
|
|
span(omega-profile-inline='profileByName(name)' options='options' disp-name='dispNameFilter')
|
2014-09-20 11:49:04 -04:00
|
|
|
h4 {{'options_notCycledProfiles' | tr}}
|
|
|
|
ul.cycle-profile-container(ui-sortable="sortableOptions" ng-model='notCycledProfiles')
|
|
|
|
li.bg-success(ng-repeat='name in notCycledProfiles')
|
2014-10-27 10:42:23 -04:00
|
|
|
span(omega-profile-inline='profileByName(name)' options='options' disp-name='dispNameFilter')
|