{% extends "base.html" %} {% block title %}Транзакции баланса - Админ Панель{% endblock %} {% block page_title %}Транзакции баланса{% endblock %} {% block breadcrumb %}
Список всех транзакций баланса пользователей
Пользователь | Telegram ID | Тип операции | Описание | Сумма | Дата |
---|---|---|---|---|---|
{{ transaction.username }} | {{ transaction.telegram_id }} | {% if transaction.type == 'api_transaction' %} {{ transaction.type_display }} {% elif transaction.type == 'deposit' %} {{ transaction.type_display }} {% elif transaction.type == 'subscription_payment' %} {{ transaction.type_display }} {% elif transaction.type == 'pending' %} {{ transaction.type_display }} {% else %} {{ transaction.type_display }} {% endif %} | {{ transaction.description }} | {{ transaction.amount }} ₽ | {{ transaction.created_at }} |
{% if error_message %}
{{ error_message }}
{% else %}
Нет доступных транзакций или соединение с API не установлено.
{% endif %}
|