{% extends "sro2/main.html" %} {% block contentheader %} Журнал операций {% if sd %}[{{ sd }} - {{ ed }}]{% endif %} {% endblock %} {% block content %}
| № | Время | Пользователь | Тип | Объект | Представление объекта | Комментарий | Действие |
|---|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ i.action_time|date:"d.m" }} {{ i.action_time|time:"H:i:s" }} | {{ i.user.first_name }} {{ i.user.last_name }} | {{ i.content_type }} | {{ i.object_id }} | {{ i.object_repr }} | {{ i.change_message }} |
{% ifequal i.action_flag 1 %} Добавлено {% endifequal %}
{% ifequal i.action_flag 2 %} Изменено {% endifequal %} {% ifequal i.action_flag 3 %} Удалено {% endifequal %} |