{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% set active_child = 'chats' %} {% block app_content %}
{% if active_ban %}
Active Ban
Reason From Until
{{ active_ban.reason }} {{ active_ban.created_at.strftime('%Y-%m-%d') }} {{ active_ban.ban_until.strftime('%Y-%m-%d') if active_ban.ban_until else '' }}
{% endif %} {% if past_bans.count() > 0 %}
Ban History
{% for past_ban in past_bans %} {% endfor %}
Reason From Type
{{ past_ban.reason }} {{ past_ban.created_at.strftime('%Y-%m-%d') }} {{ past_ban.action }}
{% endif %}
{% endblock %}