@@ -117,6 +117,11 @@ <h4 class="form-label fs-6">Marker’s additional notes</h4>
117
117
{{ q_form.orig.private_notes|default:"(none)"|linebreaks }}
118
118
</ div >
119
119
120
+ < h4 class ="form-label fs-6 "> Marker’s reason for giving no marks (if applicable)</ h4 >
121
+ < div class ="read-only-answer mb-3 mb-md-4 ">
122
+ {{ q_form.orig.no_marks_reason|default:"(none)"|linebreaks }}
123
+ </ div >
124
+
120
125
</ div >
121
126
< div class ="col-lg-4 mt-4 ">
122
127
@@ -182,6 +187,7 @@ <h3 class="h5 text-muted mb-3 mb-lg-4">Audited response</h3>
182
187
{ % endif % }
183
188
"page_number" : "{{ q_form.orig.page_number|default_if_none:''|escapejs }}" ,
184
189
"private_notes" : "{{ q_form.orig.private_notes|default_if_none:''|escapejs }}"
190
+ "no_marks_reason" : "{{ q_form.orig.no_marks_reason }}"
185
191
}
186
192
</ script >
187
193
@@ -205,6 +211,8 @@ <h3 class="h5 text-muted mb-3 mb-lg-4">Audited response</h3>
205
211
206
212
{% bootstrap_field q_form.private_notes %}
207
213
214
+ {% bootstrap_field q_form.no_marks_reason %}
215
+
208
216
{% if q_form.question_obj.how_marked == "foi" %}
209
217
{% bootstrap_field q_form.foi_answer_in_ror %}
210
218
{% endif %}
@@ -230,7 +238,7 @@ <h3 class="h5 text-muted mb-3 mb-lg-4">Audited response</h3>
230
238
var audit_responses = el . closest ( '.js-audit-responses' ) ;
231
239
var first_mark_responses = JSON . parse ( audit_responses . querySelector ( '.js-first-mark-json' ) . textContent ) ;
232
240
233
- [ "page_number" , "evidence" , "public_notes" , "private_notes" ] . forEach ( function ( slug , i ) {
241
+ [ "page_number" , "evidence" , "public_notes" , "private_notes" , "no_marks_reason" ] . forEach ( function ( slug , i ) {
234
242
audit_responses . querySelector ( '[name$="' + slug + '"]' ) . value = first_mark_responses [ slug ] ;
235
243
} ) ;
236
244
0 commit comments