django-helpdesk/helpdesk/templates/helpdesk/followup_edit.html
Guillaume Andreu Sabater d5dd2c3423 actually enable tooltip
2014-09-22 14:04:14 +02:00

37 lines
1.4 KiB
HTML

{% extends "helpdesk/base.html" %}{% load i18n %}
{% block helpdesk_title %}{% trans "Edit followup" %}{% endblock %}
{% block helpdesk_head %}
<script type="text/javascript">
$(document).ready(function() {
$("[data-toggle=tooltip]").tooltip();
});
</script>
{% endblock helpdesk_head %}
{% block helpdesk_body %}
{% include "helpdesk/ticket_desc_table.html" %}
<h3>{% trans "Edit FollowUp" %}</h3>
<form action="." method="POST" name="edit_followup_form">
{{ form.non_field_errors }}
<fieldset>
<dl>
<dt><label for='id_ticket'>{% trans "Reassign ticket:" %}</label></dt>
<dd>{{ form.ticket }}</dd>
<dt><label for="id_title">{% trans "Title:" %}</label></dt>
<dd>{{ form.title }}</dd>
<dt><label for="id_comment">{% trans "Comment:" %}</label></dt>
<dd>{{ form.comment }}</dd>
<dt><label for="id_public">Public:</label></dt>
<dd>{{ form.public }}</dd>
<p>Public tickets are viewable by the submitter and all staff, but non-public tickets can only be seen by staff.</p>
<dt><label for="id_new_status">New Status:</label></dt>
<dd>{{ form.new_status }}</dd>
<p>If the status was changed, what was it changed to?</p>
</dl>
</fieldset>
<p><input class="btn btn-primary" type="submit" value="Submit"></p>{% csrf_token %}
</form>
{% endblock helpdesk_body %}