{% extends 'admin_pages/base_admin.html' %} {% block title %}{{ title }} | Admin Panel{% endblock %} {% block content %}

{{ title }}

{% csrf_token %}
{% for field in form.visible_fields %}
{{ field.label_tag }}{{ field }} {% if field.errors %}
{{ field.errors }}
{% endif %}
{% endfor %}

Add Products
{% for item in order_items %} {% endfor %}
Product Qty Unit Price Line Total Delete
Grand Total (including other charges): 0.00
Cancel
{% endblock %}