{% extends "base/base.html" %} {% load static %} {% block title %} Solution Specification {% endblock title %} {% block page_heading %} Solution Specification {% endblock page_heading %} {% block main_content %}
Return to solutions page
{% if is_there_a_soln_spec %}
Solution spec present
{% for line in toml_line_by_line %} {% if line.0 == '#' %} {% if line.1 == '#' %} {{ line }} {% else %} {{ line }} {% endif %} {% else %} {{ line }} {% endif %}
{% endfor %}
{% if unused_pages %}

Notice that the solution spec does not use pages {{ unused_pages }}. Please double-check that those pages in your solutions are not required.

{% endif %}
{% else %}
No solution spec (yet)
  • If your solutions have the same format as your test (same questions on same pages), then into the text-box below.
  • If your solutions have a different format, then generate a template solution specification please edit it carefully before pasting it into the text-box below.
{% csrf_token %}
{% if just_submitted %} {% endif %}
{% endif %} {% endblock main_content %}