{% extends "reviewpanel/base.html" %} {% load static %} {% block title %}{{ presentation.form.name }}{% endblock %} {% block style %} {% endblock %} {% block extrajs %} {% endblock %} {% block body_attributes %}{% endblock %} {% block content %}
{% if presentation.show_stats %}
scored: {{ stats.scored }} / {{ stats.total }} {% if stats.skipped %}({{ stats.skipped }} skipped){% endif %}
{% endif %}
{% if cohort %} {% with pslug=presentation.form.program.slug fslug=presentation.form.slug %} previous scores {% endwith %} {% endif %}
log out
{% if submission %} {% for section, references, selectors in sections %}
{% if section.name == presentation.inputs_section %} {% include "./submission_inputs.html" %} {% else %} {% include "./submission_section.html" %} {% endif %}
{% endfor %} {% else %} The form '{{ presentation.form }}' doesn't have any submitted apps to preview. {% endif %}
{% endblock %}