{% if request.user == submission.user.user %}
{% trans trimmed %}
An internal error occurred while grading, and the {{ SITE_NAME }} administrators have been notified.
In the meantime, try resubmitting in a few seconds.
{% endtrans %}
{% else %}
{{ _('An internal error occurred while grading.') }}
{% endif %}
{% if submission.error and request.user.is_authenticated %}
{% if request.profile.id in submission.problem.editor_ids or perms.judge.edit_all_problem %}
{{ _('Error information') }}
{{ submission.error|highlight('pytb', linenos=False) }}
{% endif %}
{% endif %}