{% extends "vendor/manage/base.html" %} {% load i18n %} {% block vendor_content %}
{% comment %}
{% trans 'Weekly Sales' %}
$$
+3.5%
CHART
{% trans 'Monthly Comparison' %}
$$
+3.5%
CHART
{% trans 'Top Items' %}
$$
+3.5%
CHART
{% trans 'Cart Conversion Rate' %}
$$
+3.5%
CHART
{% endcomment %}
{% csrf_token %}
{% trans 'Invoice Report CSV' %}

{% trans 'Most Recent Sales' %}

{% for item in object_list %} {% empty %} {% endfor %}
{% trans '#' %} {% trans 'Name' %} {% trans 'Status' %} {% trans 'Date' %} {% trans 'Currency' %} {% trans 'Total' %}
{{ item.pk }} {{ item.get_invoice_display }} {{ item.get_status_display }} {{ item.created }} {{ item.get_currency_display }} ${{ item.total|floatformat:2|default:"0.00" }}
{% trans 'No Orders' %}
{% endblock %}