{% extends 'base.html' %} {% block title %}Аудит{% endblock %} {% block header %}Аудит{% endblock %} {% block content %} {% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %} {% endwith %}

Аудит

Вернуться в систему
Дата IP-адрес Операция Статус выполнения Данные
{% for rec in audit %}
{{ rec.cmf_created_at.value.strftime('%d-%m-%Y %H:%M') }} {% if rec.client_ip|string != "None" %}{{ rec.client_ip }}{% else %}Система{% endif %} {{ rec.operate }} {{ rec.result_status }} {% if rec.html_diff_data %}{{ rec.html_diff_data }}{% else %}{{ rec.audit_data }}{% endif %}
{% endfor %}
{% if page > 0 %} Предыдущая страница {% endif %} {% if audit and audit|length == 100 %} Следующая страница {% endif %}
{% endblock %} {% block scripts %} {% endblock %}