{% include 'AdminTemplates/adminDash.html' %} {% load static %} {% block body %}

Invoice ID : {{inv_id}}

{% for ind in invoice_details %} {% endfor %}
Customer Info
{{bill_name}}
{{contact}}
{{address}}
{{gemail}}
Invoice Info
Reference
Date
Payment Status
{% if invstatus == "Due" %} Paid
Balance
{% else %} {% endif %}
 
{{inv_id}}
{{date}}
{% if invstatus == "Due" %} Pending
{{paid}}
{{balance}}
{% else %} Completed
{% endif %}
Product Name QTY Price Discount TAX Subtotal
{% for pro in pro_list %} {% if pro.id == ind.related_product_id %} {% for image in pro.productimage_set.all %} {% if image.fea_img == 1 %} {{ image.product_image.url }} {% endif %} {% endfor %} {{pro.product_name}} {% endif %} {% endfor %} {{ ind.quantity }} {{ ind.price }} {{ ind.discount }}% {{ ind.tax }} {{ ind.total }}
  • Shipping

    0.00
  • Discount

    0%
  • {% if invstatus == "Due" %}
  • Paid

    {{paid}}
  • {% else %} {% endif %}
  • Grand Total(QAR)

    {{ grand_total }}
{% endblock body %}