{% extends 'master.twig' %} {% set title = 'You are banned!' %} {% block content %}

You got dunked on!

{% if ban.reason %}

The following reason was supplied:

{{ ban.reason|raw }}

{% else %}

No reason was supplied.

{% endif %}

Additional information

  • You were banned on {{ ban.issued|date(config('general.date_format')) }}.
  • {% if ban.expires %}This ban expires on {{ ban.expires|date(config('general.date_format')) }}.{% else %}You are permanently banned.{% endif %}
  • {% if ban.expires %}
  • You were banned by {{ ban.issuer.username }}.
  • {% endif %}
{% endblock %}