{% extends "base.html" %} {% block title %}Dashboard - Northwind Traders{% endblock %} {% block content %}

Dashboard

Customers

{{ stats.total_customers }}

View All
Products

{{ stats.total_products }}

View All
Orders

{{ stats.total_orders }}

View All
Employees

{{ stats.total_employees }}

+ New Customer
+ New Product
+ New Order
Recent Orders
View All Orders
{% if recent_orders %}
{% for order in recent_orders %} {% endfor %}
Order ID Customer Employee Date Ship To
#{{ order['OrderID'] }} {{ order['CustomerName'] }} {{ order['EmployeeName'] }} {{ order['OrderDate'] }} {{ order['ShipCountry'] }}
{% else %}

No orders found. Create your first order!

{% endif %}
{% endblock %}