{% extends "admin/base.html" %} {% block stylesheets %} {% endblock %} {% block content %}

{% if type %}{{ type|title }} {% endif %}Submissions

{% for sub in submissions %} {% endfor %}
ID Team Challenge Type Submission Date Delete
{{ sub.id }} {{ sub.team_name }} {{ sub.challenge_name }} {{ sub.type }}
{{ sub.provided }}
{% if page_count > 1 %}
Page
{% if curr_page != 1 %} <<< {% endif %} {% for page in range(1, page_count + 1) %} {% if curr_page != page %} {{ page }} {% else %} {{ page }} {% endif %} {% endfor %} {% if curr_page != page_count %} >>> {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %} {% block entrypoint %} {% endblock %}