{% filter remove_whitespace %} {# Automatically removes unnecessary whitespace #}
{% if ban.expires and time() >= ban.expires %}

{% trans %}You were blocked{% endtrans %}

{% else %}

{% if "PM:" in ban.reason %} {% trans %}New message from staff{% endtrans %} {% elseif "PM:" in ban.reason %} {% trans %}You have been warned{% endtrans %} {% else %} {% trans %}You have been blocked from posting{% endtrans %} {% endif %}

{% endif %}

{% if ban.expires and time() >= ban.expires %} {% trans %}You were blocked from{% endtrans %} {% else %} {% trans %}You have been blocked from {% endtrans %} {% endif %} {% if ban.board %} {{ config.board_abbreviation|sprintf(ban.board) }}  {% else %} {% trans %}all boards {% endtrans %} {% endif %} {% if ban.reason %} {% trans %}for the following reason: {% endtrans %} {% else %} {% trans %}for an unspecified reason. {% endtrans %} {% endif %}

{% if ban.reason %}

{{ ban.reason }}

{% if "VPN/Proxy/Tor" in ban.reason %}

Kissu has a pass system to bypass captchas, proxy bans, posting queues and filters. If you want a key to this send a donation through Patreon or Paypal. You will get a key and a thank you through your email or Patreon instant messaging within a day.

{% endif %} {% endif %}

{% if ban.created %} {% trans %}This action was filed on {% endtrans %} {{ ban.created|date(config.ban_date) }} {% if config.show_modname %} {% if ban.username %} {% trans %} by {% endtrans %} {{ ban.username }} {% else %} {% trans %} by {% endtrans %} 'system' {% endif %} {% endif %} {% trans %}and {% endtrans %} {% endif %} {% if ban.expires and time() >= ban.expires %} {% trans %} has since expired. Refresh the page to continue.{% endtrans %} {% elseif ban.expires %} {% trans %}expires {% endtrans %} {{ ban.expires|until }} {% trans %} from now, which is on {% endtrans %} {{ ban.expires|date(config.ban_date) }} {% else %} {% trans %}will not expire{% endtrans %}. {% endif %}

{% if ban.ip %}

{% trans %}Your IP address is{% endtrans %} {{ ban.ip }}.

{% endif %} {% if config.ban_page_extra %}

{{ config.ban_page_extra }}

{% endif %} {% if post and config.ban_show_post %}

{% trans %}You were blocked for the following post on{% endtrans %} {{ board.url }}:

{{ post }}
{% endif %} {% if config.ban_appeals and (not ban.expires or ban.expires - ban.created > config.ban_appeals_min_length )%}
{% if cookie_mode %}

{% trans %} You can not appeal this action{% endtrans %}.

{% elseif pending_appeal %}

{% trans %}You submitted an appeal on {% endtrans %} {{ pending_appeal|date(config.ban_date) }}. {% trans %} It is still pending{% endtrans %}.

{% elseif denied_appeals|length >= config.ban_appeals_max %} {% if denied_appeals|length == 1 %}

{% trans %}You appealed this action on{% endtrans %} {{ denied_appeals[0].time|date(config.ban_date) }} {% trans %}and it was denied. You may not appeal this action again.{% endtrans %}

{% else %}

{% trans %}You have submitted the maximum number of appeals allowed. You may not appeal this action again.{% endtrans %}

{% endif %} {% else %} {% if denied_appeals|length %} {% if denied_appeals|length == 1 %}

{% trans %}You appealed this action on{% endtrans %} {{ denied_appeals[0].time|date(config.ban_date) }} {% trans %}and it was denied.{% endtrans %}

{% if denied_appeals[0].reason %}

Mod Response:

{{ denied_appeals[0].reason }}


{% endif %}

{% trans %}You may appeal this action again. Please enter your reasoning below.{% endtrans %}

{% else %}

{% trans %}You last appealed this action on{% endtrans %} {{ denied_appeals[0].time|date(config.ban_date) }} {% trans %}and it was denied.{% endtrans %}

{% if denied_appeals[0].reason %}

Mod Response:

{{ denied_appeals[0].reason }}


{% endif %}

{% trans %}You may appeal this action again. Please enter your reasoning below.{% endtrans %}

{% endif %} {% else %}

{% trans %}You may appeal this action. Please enter your reasoning below.{% endtrans %}

{% endif %}
{% endif %} {% endif %}
{% endfilter %}