{% extends "misago/base.html" %} {% load i18n %} {% block title %}{% trans "You are banned" %} | {{ block.super }}{% endblock %} {% block meta-description %} {% trans "You are banned from accessing this page." %} {% endblock meta-description %} {% block content %}
highlight_off
{% if ban.message.html %}
{{ ban.message.html|safe }}
{% else %}

{{ ban.message.plain }}

{% endif %}

{% if ban.expires_on %} {% blocktrans trimmed with expires_on=ban.expires_on|date:"DATETIME_FORMAT" %} This ban expires on {{ expires_on }}. {% endblocktrans %} {% else %} {% trans "This ban is permanent." %} {% endif %}

{% endblock content %}