{% extends "helpdesk/base.html" %}{% load i18n %} {% block helpdesk_title %}{% trans "Edit followup" %}{% endblock %} {% block helpdesk_head %} {% endblock helpdesk_head %} {% block helpdesk_breadcrumb %} {% endblock %} {% block helpdesk_body %}
{% include "helpdesk/ticket_desc_table.html" %}
{% trans "Edit FollowUp" %}
{{ form.non_field_errors }}
{{ form.ticket }}
{{ form.title }}
{{ form.comment }}
{{ form.public }}

Public tickets are viewable by the submitter and all staff, but non-public tickets can only be seen by staff.

{{ form.new_status }}

If the status was changed, what was it changed to?

{% if helpdesk_settings.HELPDESK_ENABLE_TIME_SPENT_ON_TICKET %}
{{ form.time_spent }}
{% endif %}

{% csrf_token %}
{% endblock helpdesk_body %}