Add end time limit to a contest

This commit is contained in:
cuom1999 2024-08-14 16:15:19 +07:00
parent 1f91299d41
commit 37cdd2dd04
4 changed files with 206 additions and 211 deletions

View file

@ -4,6 +4,13 @@
<div class="alert alert-danger alert-dismissable">
<a href="#" class="close">x</a>
{{ _("Please fix below errors") }}
{% if form.non_field_errors %}
<ul>
{% for error in form.non_field_errors() %}
<li>{{ error }}</li>
{% endfor %}
</ul>
{% endif %}
</div>
{% endif %}
{% for field in form %}