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

{% trans %}You were issued a warning!{% endtrans %}

{% else %}

{% trans %}You have been issued a warning!{% endtrans %}

{% endif %}

{% if ban.expires and time() >= ban.expires %} {% trans %}You were warned for your behavior on{% endtrans %} {% else %} {% trans %}You have been warned for your behavior on{% 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 }}

{% endif %}

{% if ban.expires and time() >= ban.expires %} {% trans %}This warning was issued on {% endtrans %} {% else %} {% trans %}This warning was issued on {% endtrans %} {% endif %} {{ 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 %}Your IP address is{% endtrans %} {{ ban.ip }}.

{% if config.ban_page_extra %}

{{ config.ban_page_extra }}

{% endif %} {% if post and config.ban_show_post %}
{% if ban.expires and time() >= ban.expires %}

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

{% else %}

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

{% endif %} {{ post }}
{% endif %}

{% trans %}Warnings cannot be appealed. Click continue.{% endtrans %}

{% endapply %}