{% extends 'atlas/base.html' %} {% block content %}

Case {{case_number|add:1}} {% if show_title %} : {{case.title}} {% endif %}

{% if show_description and case.description %}
Description: {{case.description}}
{% endif %} {% if show_history and case.history%}
History: {{case.history}}
{% endif %}
{% for series in series_list %} Series {{ forloop.counter }}: {{series.get_block}} {% endfor %}
{% if show_discussion and case.discussion%}

Discussion:
{{case.discussion}}

{% endif %} {% if show_report and case.report%}

Report:
{{case.report}}

{% endif %}
{% csrf_token %}
{{form}}

{% if collection.publish_results %}

Answer score: {{answer.score}}

Answer feedback: {{answer.feedback|safe}} {% endif %}

{% if previous > -1 %} {% endif %} {% if next %} {% else %} {% if not exam.publish_results %} {% endif %} {% endif %}
{% endblock %} {% block js %} {% endblock js %}