{% extends "base.html" %} {% block toolbar %} {% include "controls/status_control.html" %} {% if not issue.is_closed %} {% include "controls/assignee_control.html" %} Edit {% if issue.can_clone %} Clone {% endif %} Delete {% endif %} {% endblock toolbar %} {% block content %}

{{ object }}

{% if not object.sla %}
This issue has not been assigned to a Service Level Agreement! Please fix this before doing anything else...
{% endif %}
Priority
{{ issue.urgency }}
{% if object.sla %}
SLA
{{ object.sla }}
{% endif %}
Service
{{ object.service }}
Created
{{ object.created }}
{% if not object.dateclosed %}
Deadline
{{ object.deadline|default:"-" }}
Time to resolve
{{ object.time_to_resolve|default:"-" }}
{% else %}
Closed
{{ object.dateclosed|default:"-" }}
{% endif %}
Contact
{{ object.contact }}
{{ view.text|safe }}
Comments
{% if not issue.is_closed %}
{% endif %}
{% for comment in object.comments.all %} {% include "snippets/comment.html" with object=comment %} {% endfor %}
Attachments {% if not issue.is_closed %}
{% endif %}
{% include "snippets/history.html" %} {% endblock %}