{% extends "base.html" %} {% block title %}{{ ticket.title }}{% endblock %} {% block content %}

{{ ticket.title }}

{{ _('Status') }}: {% if ticket.status == 'open' %} {{ _('Open') }} {% else %} {{ _('Closed') }} {% endif %}

{% for comment in comments %}
{{ comment.user.username }} {{ comment.created_at.strftime('%Y-%m-%d %H:%M') }}

{{ comment.message }}

{% endfor %}
{% if ticket.status == 'open' %}
{% else %}
{{ _('This ticket is closed.') }}
{% endif %} {% if user.is_admin %}
{% endif %} {{ _('Back to Support') }} {% endblock %}