NDOJ/templates/ticket/new_problem.html

12 lines
497 B
HTML
Raw Normal View History

2020-01-21 06:35:58 +00:00
{% extends "ticket/new.html" %}
{% block guideline_message %}
2023-01-27 23:11:10 +00:00
{% if not request.in_contest %}
<div class="alert alert-warning alert-dismissable">
<a class="close">x</a>
<b>{{ _('Thanks for opening a ticket!') }}</b>
<br><br>
{{ _('Please keep in mind that this form is for reporting issues with a problem statement, and not for asking for help. If you require assistance on solving a problem, ask in the comments instead.') }}
</div>
{% endif %}
2020-01-21 06:35:58 +00:00
{% endblock %}