{% extends 'br_compensations/base.html' %} {% load humanize %} {% load static %} {% load i18n %} {% block title %}{% trans "Battle compensations" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
| {% trans "Тип" %} {% if current_sort == 'report_type' %}↑{% elif current_sort == '-report_type' %}↓{% endif %} | {% comment %}{% trans "Ссылка" %} {% if current_sort == 'uid' %}↑{% elif current_sort == '-uid' %}↓{% endif %} | {% endcomment %}{% trans "Добавлен" %} {% if current_sort == 'updatedAt' %}↑{% elif current_sort == '-updatedAt' %}↓{% endif %} | {% trans "Комментарий" %} {% if current_sort == 'comment' %}↑{% elif current_sort == '-comment' %}↓{% endif %} | {% trans "Обработка" %} {% if current_sort == 'status' %}↑{% elif current_sort == '-status' %}↓{% endif %} | {% for report in reports %} |
|---|---|---|---|---|---|
| {{ report.get_report_type_display }} | {% comment %}{{report.uid}} | {% endcomment %}{{report.updatedAt|date:"d.m.Y, H:i"}} | {{report.comment}} | {{ report.get_status_display }} |