Files
habitica/website/views/shared/tasks/edit/habits/frequency.jade
T
Keith Holliday 11c8f2a775 Minification fix hide features (#8544)
* Added minification fix

* Hid settings for features we will not release yet

* Hid repeatables UI

* Removed extra file

* Removed repeats every from weekly

* Added start date back

* Hid counter reset when advance is collpased
2017-03-08 18:50:57 -07:00

8 lines
431 B
Plaintext

fieldset.option-group.counter_period(ng-if='task.type === "habit" && canEdit(task) && task._edit._advanced')
.form-group
legend.option-title=env.t('counterPeriod')
select.form-control(ng-model='task._edit.frequency', ng-disabled='!canEdit(task)')
option(value='daily')=env.t('counterPeriodDay')
option(value='weekly')=env.t('counterPeriodWeek')
option(value='monthly')=env.t('counterPeriodMonth')