{% extends "base.html" %} {% load bootstrap4 %} {% block title %}Questions{% endblock title %} {% block content %}

Questions


{% if question_form %}

Change/Add Question

{{ upload_form.management_form }} {% csrf_token %} {% bootstrap_form question_form %} {% buttons %} {% endbuttons %}


{% endif %}
Add a Project to all quesitons:
{% for project in projects %} {%endfor%}

{% for question in questions %}
{{question.topic}}
{{question.question}}
{%endfor%}

Test Result Overview


testee
correct answers
test duration
test start

{% for result in test_results %}
{{result.testee}}
{{result.result|floatformat:-2}} %
{{result.duration|floatformat:-1}} min
{{result.created_at}}
{%endfor%}
{% endblock content %}