{% extends 'base.html' %} {% block content %}

Dashboard

Total Revenue

${{ "%.2f"|format(total_revenue) }}

Total Orders

{{ total_orders }}

Total Menu

{{ total_menu }}

Total Staff

{{ total_staff }}

Total Revenue
Total Orders
New Orders
{% for order in new_orders %} {% else %} {% endfor %}
Order ID Customer Name Date Time Amount Status Action
#{{ order.id }} {{ order.customer_name }} {{ order.date }} {{ order.time }} ${{ "%.2f"|format(order.amount) }} {{ order.status|title }}
No orders found
{% endblock %} {% block scripts %} {% endblock %}