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

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

{% if collection.show_description and case.description%}
Description: {{case.description}}
{% endif %}
{% for series in series_list %} Series {{ forloop.counter }}: {{series.get_block}} {% endfor %}
{% if collection.show_discussion and case.discussion%}
Discussion:
{{case.discussion}}
{% endif %} {% if collection.show_report and case.report%}
Report:
{{case.report}}
{% endif %}
{% if previous %} Previous {% endif %} {% if next %} Next {% endif %}

Return to collection {% endblock %} {% block js %} {% endblock js %}