{% extends "cranefly/layout.html" %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(title=_('Error')) }}{% endblock %} {% block content %}
{% if banned_user %} {% if ban.reason_user %}

{% trans username=banned_user.username %}{{ username }}, your account has been banned for following reason:{% endtrans %}

{% else %}

{% trans username=banned_user.username %}{{ username }}, your account has been banned.{% endtrans %}

{% endif %} {% else %} {% if ban.reason_user %}

{% trans %}Guest, your IP Address has been banned from accessing this page for following reason:{% endtrans %}

{% else %}

{% trans %}Guest, your IP Address has been banned from accessing this page.{% endtrans %}

{% endif %} {% endif %} {% if ban.reason_user %}
{{ ban.reason_user|markdown|safe }} {% if ban.expires %}

{% trans ban_expires=ban.expires|date %}Your ban will expire on {{ ban_expires }}{% endtrans %}

{% endif %}
{% elif ban.expires %}

{% trans ban_expires=ban.expires|date %}Your ban will expire on {{ ban_expires }}{% endtrans %}

{% endif %}
{% endblock %}