{% extends "misago/profile/base.html" %} {% load i18n misago_avatars misago_capture %} {% block page %}

{% if ban.expires_on %} {% blocktrans trimmed with user=profile banned_until=ban.formatted_expiration_date %} {{ user }} is banned until {{ banned_until }}. {% endblocktrans %} {% else %} {% blocktrans trimmed with user=profile %} {{ user }} is banned permanently. {% endblocktrans %} {% endif %}

{% if user.is_authenticated and profile.acl_.can_lift_ban %}
{% csrf_token %}
{% endif %}
{% if ban.user_message %}

{% trans "User message" %}

{{ ban.user_message|escape|urlize|linebreaksbr }}
{% endif %} {% if ban.staff_message %}

{% trans "Team message" %}

{{ ban.staff_message|escape|urlize|linebreaksbr }}
{% endif %} {% endblock page %} {% block javascripts %} {% if user.is_authenticated and profile.acl_.can_lift_ban %} {% endif %} {% endblock javascripts %}