{% extends 'br_compensations/base.html' %} {% load humanize %} {% load static %} {% load i18n %} {% block title %}{% trans "Battle compensations" %}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Отчеты о боях" %}
{% comment %} {% endcomment %} {% for report in reports %} {% comment %} {% endcomment %} {% endfor %}
{% trans "Тип" %} {% if current_sort == 'report_type' %}↑{% elif current_sort == '-report_type' %}↓{% endif %} {% trans "Ссылка" %} {% if current_sort == 'uid' %}↑{% elif current_sort == '-uid' %}↓{% endif %} {% 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 %}
{{ report.get_report_type_display }} {{report.uid}} {{report.updatedAt|date:"d.m.Y, H:i"}} {{report.comment}} {{ report.get_status_display }}
{% if is_paginated %} {% endif %}
{% include './components/link-add-form.html' %}
{% endblock %} {% block extra_javascript %} {{ block.super }} {% endblock %}