{% extends 'partials/backend.html' %} {% load static %} {% load humanize %} {% block content %}

Lists

00 items selected
{% for o in orders %} {% endfor %}
Order ID user Order Details Created Service Name Status action
{{ o.number_id }}
{{ o.user.email }}
{{ o.name }}
  • Phone Number: +{{ o.phone_number }}
  • Code: {{ o.info }}
  • Price: ₦{{ o.amount|floatformat:2|intcomma }}
  • Vendor: {{ o.vendor }}
{{ o.date }} {{ o.service }} {% if o.status == "Completed" %} {{ o.status }} {% elif o.status == "Processing" %} {{ o.status }} {% elif o.status == "Pending" %} {{ o.status }} {% elif o.status == "Partial" %} {{ o.status }} {% elif o.status == "Cancelled" %} {{ o.status }} {% elif o.status == "In Progress" %} {{ o.status }} {% elif o.status == "Refunded" %} {{ o.status }} {% endif %}
{% endblock content %}