{% extends "board/base.html" %} {% block title %} {% if bans %} Banned {% else %} Not banned {% endif %} {{block.super}} {% endblock title %} {% block extrastyle %} {{block.super}} {% endblock extrastyle %} {% block content %}
 
{% if bans %}

You are banned.

You have been banned, and you are not allowed to post until your bans have expired.

Your IP address: {{ip}}


{% for ban in bans %}

Board: {% if ban.board %} /{{ ban.board.url }}/ - {{ ban.board.name }} {% else %} All boards {% endif %}

{% if ban.post_id %}

Post ID: {{ban.post_id}}

{% endif %}

Ban reason:

{{ban.ban_reason}}

{% if ban.expires %} This ban will expire on {{ban.expires|date:"M dS"}} at {{ban.expires|date:"P e"}} {% else %} This ban will not expire. {% endif %}


{% endfor %} {% else %}

You are not banned.

You have no bans recorded for your IP address.

{% endif %}
 
{% endblock %}