{% extends "base/base.html" %} {% load static %} {% block title %} Template Solution Specification {% endblock title %} {% block page_heading %} Template Solution Specification {% endblock page_heading %} {% block main_content %}
Generated solution toml template

  • Download the generated toml and open in your favourite editor, or simply copy-paste the generated toml into your editor.
  • This template assumes that the structure of your solutions is similar to your original test. So carefully check the the pages of the solution of each question.
  • Once you have made your changes go back to the solutions specification page and paste in your toml.

Return to solution specification page

{% for line in toml_line_by_line %} {% if line.0 == '#' %} {% if line.1 == '#' %} {{ line }} {% else %} {{ line }} {% endif %} {% else %} {{ line }} {% endif %}
{% endfor %}
{% endblock main_content %}