{% set page_name = "record_main" %} {% extends "layout/basic.html" %} {% block content %}

{{ _('Filter') }}

{{ _('Reset') }}
{% if not rdocs %} {% if not filter_uid_or_name and not filter_pid and not filter_tid %} {{ nothing.render('Oh, there is no task in the queue!') }} {% else %} {{ nothing.render('Oh, there is no task that matches the filter!') }} {% endif%} {% else %} {% for rdoc in rdocs %} {% set udoc = udict[rdoc['uid']] %} {% set pdoc = pdict[rdoc['pid']] %} {% include 'record_main_tr.html' %} {% endfor %}
{{ _('Status') }} {{ _('Problem') }} {{ _('Submit By') }} {{ _('Time') }} {{ _('Memory') }} {{ _('Language') }} {{ _('Submit At') }}
{% if handler.has_perm(perm.PERM_VIEW_JUDGE_STATISTICS) %} {% endif %} {% endif %}
{% if statistics %}

{{ _('Statistics') }}

{{ _('Day') }}
{{ statistics['day'] }}
{{ _('Week') }}
{{ statistics['week'] }}
{{ _('Month') }}
{{ statistics['month'] }}
{{ _('Year') }}
{{ statistics['year'] }}
{{ _('Total') }}
{{ statistics['total'] }}
{% endif %}
{% endblock %}