mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-12-02 04:43:30 +01:00
14 lines
665 B
HTML
14 lines
665 B
HTML
|
{% extends "helpdesk/public_base.html" %}{% load i18n %}
|
||
|
|
||
|
{% block helpdesk_body %}
|
||
|
<h2>{% trans "Unable To Open Ticket" %}</h2>
|
||
|
|
||
|
{% blocktrans %}<p>Sorry, but there has been an error trying to submit your ticket.</p>
|
||
|
|
||
|
<p>Our system has marked your submission as <strong>spam</strong>, so we are unable to save it. If this is not spam, please press back and re-type your message. Be careful to avoid sounding 'spammy', and if you have heaps of links please try removing them if possible.</p>
|
||
|
|
||
|
<p>We are sorry for any inconvenience, however this check is required to avoid our helpdesk resources being overloaded by spammers.</p>
|
||
|
{% endblocktrans %}
|
||
|
|
||
|
{% endblock %}
|