{% extends 'base.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 if ibody.wz else 'Your results will be shown here'}}
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
The following results are based on: no file here. {% for qkey, qbody in questions.items() %} {% if loop.index == 1 %} {% else %} {% endif %} {% for ikey, ibody in qbody.tests.items() %} {% endfor %}
{{qbody.title}} Unittests result .token-file result{{qbody.title}}
{{ibody.title}} Test has not been run Test has not been run
{% 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 %} {% block navigation_footer %}
Rerun all tests
{% endblock %}