{# vim: set ts=2 et sts=2 sw=2: #} {% extends "users/base.html" %} {% set title = _('You\'ve Been Banned') %} {% set classes = 'profile' %} {% block title %}{{ page_title(title) }}{% endblock %} {% block content %}

{{ title }}

{{ _('You have been banned for the following reason:') }}

    {% if bans | length %} {% for ban in bans %}
  • {{ ban.reason }}
  • {% endfor %} {% endif %}
{% trans %}

Click here to appeal this ban.

{% endtrans %}
{% endblock %}