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

19 lines
484 B
HTML
Raw Normal View History

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