{% extends "base.html" %} {% block content %}

{{ ticket.title }}

{{ ticket.status }} Created by {{ ticket.creator.username }} {{ ticket.created_at.strftime('%Y-%m-%d %H:%M') }}

{{ ticket.description }}

{% if ticket.status == 'CLOSED' %}
Closed by {{ ticket.closed_by.username }}
Reason: {{ ticket.closing_reason }}
{% endif %}

Comments

{% for comment in ticket.comments %} {% if not comment.is_hidden or is_admin %}

{{ comment.user.username }} {{ comment.created_at.strftime('%Y-%m-%d %H:%M') }} {% if comment.is_hidden %} Hidden {% endif %}
{{ comment.content }}

{% if is_admin %}
{% endif %}
{% endif %} {% else %}

No comments yet.

{% endfor %} {% if ticket.status != 'CLOSED' %}
{% if is_admin %}
{% endif %}
{% endif %}

Actions

{% if ticket.status != 'CLOSED' %} {% if is_admin or is_creator %} {% else %}

Only admins or the creator can close this ticket.

{% endif %} {% else %}

This ticket is closed.

{% endif %}
Back to List
{% endblock %}