{% extends 'sidebar.html' %} {% macro build_question_body(hi) %} {{hi}} {% endmacro %} {% block head %} {% endblock %} {% block content %}
{% set count=0 %} {% for qkey, qbody in questions.items() %} {% set outer_loop = loop %} {% for ikey, ibody in qbody.tests.items() %}

{{qbody.title}}

{{ibody.title}} Rerun

Terminal Output

Test outcome
{{ibody.wz}}
Hints
{% for h in ibody.hints %}
{% if not h[1] %} Overall hints: {% else %} From the file {{ h[1] }} {% endif %}
    {% for hitem in h[0] %}
  • {{hitem}}
  • {% endfor %}
{% endfor %}
{% endfor %} {% endfor %}
Your submission
{% for qkey, qbody in questions.items() %}
{{qbody.title}}
{% for ikey, ibody in qbody.tests.items() %} {% endfor %}
Test Unittests result .token-file result
{{ibody.title}} pass fail
{% endfor %}
Hand-in instructions:

To hand in your results, you should run the file {{grade_script}}. You can either do this from your IDE, or by going to the directory:

    {{root_dir}}
and from there run the command:

    {{run_cmd_grade}}
This will generate a .token file which contains your answers and you should upload to DTU learn.

{% endblock %} {% block navigation %}
{% endblock %}