{% extends "base.html" %} {% block body %}
{% if data.requests is not empty %}
{% if data.requests.status == "closed" %}[{{locale.request_closed}}]{% endif %} {{data.requests.subject}}
{{data.requests.message}}
{% for reaction in data.requests.reactions %}
{{locale.request_react_on}} {{data.requests.subject}}
{% if reaction.username == player.username %} {% endif %}
{{reaction.message|raw}}
{% endfor %} {% if data.requests.status != "closed" %} {% if data.requests.latest.practitioner_id != player.id and data.requests.latest != null %}
{{locale.request_react}}
{{locale.request_description}}

{% endif %} {% endif %} {% else %} {% if banned_reason %}
× You have been banned!
Reason: {{banned_reason.ban_reason}}
Expire: {{ banned_reason.ban_expire|date }}
{% endif %}
{{locale.request_contact}}
{{locale.request_contact_help}}

{{locale.request_new_ticket}}

{% endif %} {% if data.tickets is not empty %}
{% for request in data.tickets %} {% if request.status == "in_treatment" %} {% elseif request.status == "open" %} {% else %} {% endif %} {% endfor %}
{{locale.request_subject}} {{locale.request_type}} {{locale.request_status}}
{{user.username}} {{request.subject}}{{locale.request_in_treatment}}{{locale.request_open}}{{locale.request_closed}}{{request.timestamp|date("d-M H:i")}}
{% endif %}
{% endblock %}