{# src/examen/templates/start.html #} {% extends "base.html" %} {% block title %}Examen — {{ artifact.quiz_id }}{% endblock %} {% block content %} {% if demo_mode %}
This is a hosted demo of the bundled fixture quiz. To quiz your own code: pip install examen.
{% endif %}

Examen

A self-examination for code you just shipped.

{{ artifact.quiz_id }}  ·  {{ artifact.repo.root }} @ {{ artifact.repo.commit[:7] }} {% if artifact.repo.branch %}({{ artifact.repo.branch }}{% if artifact.repo.dirty %}, dirty{% endif %}){% endif %}  ·  {{ artifact.mode.kind }} mode

Topics

{% for t in artifact.topics %}
{{ t.label }}
{{ (t.files|length) if t.files is defined else "" }}{% if t.files is defined %} file{{ "s" if (t.files|length) != 1 }}{% endif %}
{% endfor %}

{{ artifact.questions | length }} questions · drills on miss · ~{{ ((artifact.questions|length) * 50 // 60) or 1 }} minutes

Confidence rated alongside each answer.

{% endblock %}