mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* Prevented watch functions from being called when task._edit is removed * Added start date support on the UI task summary * Fixed setting of monthly and calculations * Fixed linting issues * Added check for existence * Added existence check * Ensured correct start date is used on update * Hid repeat options from anything not a daily * Added missing locales * Moved repeatables out of advance options
51 lines
2.9 KiB
Plaintext
51 lines
2.9 KiB
Plaintext
div(ng-if='(task.type !== "reward") || (!obj.auth && obj.purchased && obj.purchased.active)')
|
|
button.advanced-options-toggle.option-title.mega(type='button',
|
|
ng-class='{active: task._edit._advanced}',
|
|
ng-click='task._edit._advanced = !task._edit._advanced', tooltip=env.t('expandCollapse'))
|
|
=env.t('advancedOptions')
|
|
|
|
fieldset.option-group.advanced-option(ng-if="task.userId" ng-show="task._edit._advanced")
|
|
legend.option-title
|
|
a.hint(href='http://habitica.wikia.com/wiki/Task_Alias', target='_blank', popover-trigger='mouseenter', popover="{{::env.t('taskAliasPopover')}} {{::task._edit.alias ? '\n\n\' + env.t('taskAliasPopoverWarning') : ''}}")=env.t('taskAlias')
|
|
input.form-control(ng-model='task._edit.alias' type='text' placeholder=env.t('taskAliasPlaceholder'))
|
|
|
|
include ./habits/frequency
|
|
|
|
fieldset.option-group.advanced-option(ng-show="task._edit._advanced", ng-if="!obj.auth && obj.purchased && obj.purchased.active")
|
|
group-tasks-actions(task='task', group='obj')
|
|
|
|
fieldset.option-group.advanced-option(ng-show="task._edit._advanced && task.type !== 'reward'")
|
|
legend.option-title
|
|
a.hint.priority-multiplier-help(href='http://habitica.wikia.com/wiki/Difficulty', target='_blank', popover-title=env.t('difficultyHelpTitle'), popover-trigger='mouseenter', popover=env.t('difficultyHelpContent'))=env.t('difficulty')
|
|
ul.priority-multiplier
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.priority==0.1}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=0.1)')
|
|
=env.t('trivial')
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.priority==1 || !task._edit.priority}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=1)')
|
|
=env.t('easy')
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.priority==1.5}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=1.5)')
|
|
=env.t('medium')
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.priority==2}',
|
|
ng-click='!canEdit(task) || (task._edit.priority=2)')
|
|
=env.t('hard')
|
|
|
|
span(ng-if='task.type=="daily" && !$state.includes("options.social.challenges")')
|
|
legend.option-title.pull-left=env.t('restoreStreak')
|
|
input.option-content(type='number', ng-model='task._edit.streak')
|
|
|
|
div(ng-if='::(user.preferences.allocationMode == "taskbased" && user.preferences.automaticAllocation) || $state.is("options.social.challenges")')
|
|
legend.option-title.pull-left=env.t('attributes')
|
|
ul.task-attributes
|
|
each attribute, short in {str: 'strength', int: 'intelligence', con: 'constitution', per: 'perception'}
|
|
li
|
|
button(type='button', ng-class='{active: task._edit.attribute=="#{short}"}',
|
|
ng-click='task._edit.attribute="#{short}"',
|
|
popover=env.t('#{attribute}Example'), popover-trigger='mouseenter', popover-placement='top')
|
|
=env.t(attribute)
|