{% extends "todo/base.html" %} {% block page_heading %}{% endblock %} {% block title %}File Ticket{% endblock %} {% block content %} {% if messages %} {% endif %}

{{ task }}

{% csrf_token %} {% if task.note %}
Note: {{ task.note|safe|urlize|linebreaks }}
{% endif %}

File Trouble Ticket

Trouble with a computer or other technical system at the J-School?
Use this form to report the difficulty - we'll get right back to you.

{% if form.errors %} {% for error in form.errors %} {% endfor %}
{% endif %} {{ form.management_form }} {{ form.id }}
Summary: {{ form.title }}
Include the workstation number in your summary, e.g.
"Radio Lab # 4: Purple smoke pouring out the back."
Note: {{ form.note }}
Please describe the problem.
Priority: {{ form.priority }}
Enter a number between 1 and 5,
where 5 is highest ("Computer is on fire = True").

{% endblock %}