{% extends 'base_help.html' %} {% load i18n %} {% load static %} {% block pagetitle %} {% trans 'Ticket:' %} {{ ticket.subject }} {% if not ticket.is_open %} [{% trans 'closed' %}] {% endif %} {% endblock %} {% block helpdesk_body %}
{% for message in ticket_messages %}

{% if message.staff_only %}[{% trans "Private" %}]{% endif %} {% if ticket.user != message.user %} CCrypto Support - {% endif %} {{ message.user.username|default:'-' }}:

{% with created=message.created|date:'d/m/Y H:i' %} {{ created }} {% endwith %}

{{ message.message | linebreaksbr | urlize }}

{% endfor %}
{% csrf_token %} {% if staff_reply %} {% endif %} {% if ticket.is_open %} {% else %} {% endif %}
{% endblock %}