{% extends "base_billing.html" %} {% load i18n %} {% load static %} {% load rules %} {% block title %}{% trans 'Billing' %}{% endblock %} {% block content %} {% has_perm 'sous_chef.edit' request.user as can_edit_data %}
{{ filter.form.date }}
{% trans "Reset" %}


{% if billings %} {% for billing in billings %} {% include "billing/billing_confirm_delete.html" %} {% endfor %}
{% trans "Billing ID" %} {% trans "Billing Period" %} {% trans 'Amount' %} {% trans 'Orders' %} {% trans 'Actions' %}
{{billing.id}} {{billing.billing_period|date:"F Y"}} {{billing.total_amount}} {{billing.orders__count}} {% if can_edit_data %}{% endif %}
{% else %}

{% trans "Sorry, no result found" %}.

{% endif %} {% endblock %}