{% extends 'adminapp/basic.html' %} {% block body %}

Dashboard

Welcome to Admin panel !

{{tp}}

Total Products

{{today}}

Today's Order

{{tu}}

Total Users

{{to}}

Total Orders

Recent Orders

{% for a in all %} {% endfor %}
Order ID Date Phone Address Remarks Status Action
SP{{a.id}} {{a.date}} {{a.phone}} {{a.address}} {{a.remarks}} {% if a.status == "Pending" %} {{a.status}} {% elif a.status == "Rejected" %} {{a.status}} {% elif a.status == "Delivered" %} {{a.status}} {% elif a.status == "Delayed" %} {{a.status}} {% else %} Undefined {% endif %}
{% endblock body %}