{% extends "partials/base.html" %} {% load static i18n %} {% block title %}{% trans "Reports" %}{% endblock title %} {% block extra_css %} {% endblock extra_css %} {% block content %}

{% trans "Reports" %}

{% trans "Report List" %}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% for report in reports %} {% endfor %}
{% trans "Transaction ID" %} {% trans "Offer ID" %} {% trans "Order ID" %} {% trans "Affiliate ID" %} {% trans "Amount" %} {% trans "Order Status" %} {% trans "Review Status" %} {% trans "Review Eligibility" %} {% trans "Created At" %}
{{ report.transaction.id }} {{ report.offer_id }} {{ report.order_id }} {{ report.affiliate_id|default_if_none:"-" }} {{ report.amount }} {{ report.order_status }} {{ report.review_status }} {{ report.review_eligibility }} {{ report.created_at|date:"Y-m-d" }}
{% if not reports %}
{% trans "No reports available." %}
{% endif %}
{% endblock content %} {% block extra_js %} {% endblock %}