Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SE error hint fix #355

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions oioioi/contests/templates/contests/submission.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@
{% for report in reports %}
<div class="{% if submission.status != 'CE' and submission.status != 'SE' %}col-xl-6{% endif %}">
{{ report }}
<div class="alert alert-info">
{% if submission.status == 'SE' %}
<i class="fa-solid fa-circle-info"></i>
{% trans "Something went wrong on our side when judging your submission... Try again later or contact the administration if this issue persists." %}
{% endif %}
</div>
</div>
{% endfor %}
{% if submission.status == 'SE' %}
<div class="alert alert-info col-xl-12">
<i class="fa-solid fa-circle-info"></i>
{% trans "Something went wrong on our side when judging your submission... Try again later or contact the administration if this issue persists." %}
</div>
{% endif %}
</div>
{% if can_admin %}
<h4>
Expand Down
Loading