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

{{ issue.urgency }} {{ object.issue_id }} {{ object.title }}

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

Attachments

Comments

{% for comment in object.comments.all %} {% include "snippets/comment.html" with object=comment %} {% endfor %}
{% include "snippets/history.html" %} {% endblock %}