{% extends "admin/base_site.html" %}
{% load i18n admin_urls admin_static admin_list %}
{% load mask %}
{% block extrastyle %}
{{ block.super }}
{% if cl.formset %}
{% endif %}
{% if cl.formset or action_form %}
{% endif %}
{{ media.css }}
{% if not actions_on_top and not actions_on_bottom %}
{% endif %}
{% endblock %}
{% block extrahead %}
{{ block.super }}
{{ media.js }}
{% if action_form %}{% if actions_on_top or actions_on_bottom %}
{% endif %}{% endif %}
{% endblock %}
{% if not is_popup %}
{% block breadcrumbs %}
{% endblock %}
{% endif %}
{% block coltype %}flex{% endblock %}
{% block content %}
{##}
Chat manager
Total chats: {{ chats.paginator.count }}
Chat token |
Created |
Status |
{% if chats.paginator.count %}
{% for chat in chats %}
{{ chat.0|mask }} |
{{ chat.1|date:"d-M-Y, G:i:s" }} |
{{ chat.2 }} |
{% endfor %}
|
{% endif %}
{#
#}
{% endblock %}