{% extends "store/base.html" %} {% load render_table from django_tables2 %} {% load querystring from django_tables2 %} {% load static %} {% block title %}Invoices{% endblock title %} {% block content %}
Create Invoice Export to Excel
{% for invoice in invoices %} {% endfor %}
ID Customer Name Phone Number Item Price per Item Quantity Total Shipping Grand Total Action
{{ invoice.id }} {{ invoice.customer_name }} {{ invoice.contact_number }} {{ invoice.item.name }} {{ invoice.price_per_item }} {{ invoice.quantity }} {{ invoice.total }} {{ invoice.shipping }} {{ invoice.grand_total }}
{% if is_paginated %} {% endif %}
{% endblock content %}