diff options
Diffstat (limited to 'testapp/templates/exam/ajax_marks.html')
-rw-r--r-- | testapp/templates/exam/ajax_marks.html | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/testapp/templates/exam/ajax_marks.html b/testapp/templates/exam/ajax_marks.html new file mode 100644 index 0000000..716bb88 --- /dev/null +++ b/testapp/templates/exam/ajax_marks.html @@ -0,0 +1,4 @@ +<option value='select'>Select Marks</option> +{% for mark in marks %} +<option value="{{ mark.0 }}"> {{ mark.0 }} </option> +{% endfor %} |