mirror of
https://gitea.mueller.network/extern/django-helpdesk.git
synced 2024-11-30 03:43:46 +01:00
2e2176547d
* Added ability for public to submit a ticket via the web if they aren't logged in * Added ability for public to view ticket via web using ticket ID & e-mail address * Added public ticket URL to e-mails * Added manager to FollowUp class to
24 lines
671 B
HTML
24 lines
671 B
HTML
{% extends "helpdesk/public_base.html" %}
|
|
{% block helpdesk_title %}Helpdesk{% endblock %}
|
|
|
|
{% block helpdesk_body %}
|
|
<h2>View a Ticket</h2>
|
|
|
|
<form method='get' action='{% url helpdesk_public_view %}'>
|
|
|
|
{% if error_message %}<p><strong>Error:</strong> {{ error_message }}</p>{% endif %}
|
|
|
|
<fieldset>
|
|
<dl>
|
|
<dt><label for='id_ticket'>Ticket</label></dt>
|
|
<dd><input type='text' name='ticket' value='{{ ticket }}' /></dd>
|
|
|
|
<dt><label for='id_email'>Your E-mail Address</label></dt>
|
|
<dd><input type='text' name='email' value='{{ email }}' /></dd>
|
|
</dl>
|
|
|
|
<input type='submit' value='View Ticket' />
|
|
</fieldset>
|
|
</form>
|
|
{% endblock %}
|