{% extends "board/base.html" %} {% block title %} {% if bans %} {% with title="Banned" %} {{ block.super }} {% endwith %} {% else %} {% with title="Not banned" %} {{ block.super }} {% endwith %} {% endif %} {% 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 %}

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 %}