checkout/src/purchase/templates/purchase/reports.html

23 lines
712 B
HTML
Raw Normal View History

{% extends "common/base.html" %}
2022-04-25 23:04:49 +02:00
{% load i18n %}
{% load purchase %}
{% block content %}
2022-04-25 23:04:49 +02:00
<h1>{% translate "Reports" %}</h1>
<h2>{% translate "General" %}</h2>
2022-04-25 22:24:01 +02:00
<ul>
2022-04-25 23:04:49 +02:00
<li>{% translate "Total turnover:" %} {{ total|currency }}</li>
<li>{% translate "Average basket:" %} {{ average_basket|currency }}</li>
2022-04-25 22:24:01 +02:00
</ul>
2022-04-25 23:04:49 +02:00
<h2>{% translate "Products" %}</h2>
{% include "purchase/snippets/report_products.html" %}
2022-04-25 18:59:32 +02:00
2022-04-25 23:04:49 +02:00
<h2>{% translate "Turnover by payment method" %}</h2>
2022-04-25 18:59:32 +02:00
{% include "purchase/snippets/report_payment_methods.html" %}
2022-04-25 23:04:49 +02:00
<h2>{% translate "Baskets without payment method" %}</h2>
2022-04-25 18:59:32 +02:00
{% include "purchase/snippets/report_no_payment_method.html" %}
{% endblock %}