93befcebcc
* Added setting and modal for score notes * Added persistent score notes * Fixed linting issues and documented new field * Added max length to task score notes * Added check for score notes existence * Combined tasks perferences
11 lines
319 B
Plaintext
11 lines
319 B
Plaintext
script(id='modals/task-notes.html', type='text/ng-template')
|
|
.modal-header
|
|
h4 Task Notes
|
|
|
|
.modal-body
|
|
textarea.form-control(ng-model="task.scoreNotes", row="10")
|
|
|
|
.modal-footer
|
|
.btn.btn-default(ng-click='$close()')=env.t('cancel')
|
|
.btn.btn-primary(ng-click="$close(task)")=env.t('save')
|