{% extends "customer_main.html" %} {%load static%} {% block modules_section %} {% endblock modules_section %} {% block content %}

Due Date: {{payment.date_due}}

Bill To:

{{payment.order.customer.user.first_name}} {{payment.order.customer.user.last_name}}

{{payment.order.customer.mobile_number}}

{{payment.order.customer.user.email}}

Invoice Items

    {% for item in payment.order.orderitem_set.all %}
  • {{item.item.title}}
  • {% endfor %}

Total: ${{payment.order.get_cart_total}}

Scan this QR on Your Whish Mobile Application
to Proceed Payment

Payment By Whish Money

{% endblock %}