{% extends "base.html" %} {% load crispy_forms_tags %} {% block content %}

Self Review

{{ user_exam.exam }}

Reflect on this case and score your own performance. These scores are personal and intended to support learning.

Case: {{ case }}
{% csrf_token %} {{ form.non_field_errors }} {{ form.user_exam }} {{ form.case }}
{{ form.comments|as_crispy_field }}
{% for value, label in form.fields.findings.choices %} {% endfor %}
{% if form.findings.help_text %}
{{ form.findings.help_text }}
{% endif %} {% if form.findings.errors %}
{{ form.findings.errors|striptags }}
{% endif %}
{% for value, label in form.fields.interpretation.choices %} {% endfor %}
{% if form.interpretation.help_text %}
{{ form.interpretation.help_text }}
{% endif %} {% if form.interpretation.errors %}
{{ form.interpretation.errors|striptags }}
{% endif %}
Open Case {% if review %} Delete Review {% endif %}
{% endblock %}