django-helpdeskmig/templates/helpdesk/public_view_form.html
Ross Poulton 2e2176547d * Added logout link/template
* 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
2008-01-16 00:26:24 +00:00

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 %}