Tasks score notes (#8507)

* 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
This commit is contained in:
Keith Holliday
2017-02-27 14:56:34 -07:00
committed by GitHub
parent 68a042cdb9
commit 93befcebcc
12 changed files with 102 additions and 9 deletions
@@ -0,0 +1,10 @@
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')