{% extends "common-content.html" %} {% block js_media %} {% compress js %} {% if request.user.is_authenticated and perms.judge.rejudge_submission %} {% endif %} {% endcompress %} {% if dynamic_update and last_msg %} {% endif %} {% endblock %} {% block title_ruler %}{% endblock %} {% block title_row %} {% include "submission/submission-list-tabs.html" %} {% endblock %} {% block media %} {% if perms.judge.change_submission and perms.judge.rejudge_submission %} {% endif %} {% endblock %} {% block body %} {% if page_obj.num_pages > 1 %}
{% include "list-pages.html" %}
{% endif %}
{% set profile_id = request.profile.id if request.user.is_authenticated else 0 %} {% for submission in submissions %}
{% with problem_name=show_problem and submission.problem.i18n_name %} {% include "submission/row.html" %} {% endwith %}
{% endfor %}
{% if page_obj.num_pages > 1 %}
{% include "list-pages.html" %}
{% endif %}
{% endblock %} {% block bodyend %} {# Don't load MathJax from common-content! #} {% endblock %}