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

Dashboard

Logout

{{ total_jambos }}

Total Jambos

View Details

{{ total_orders }}

Total Orders

View Details

{{ pending_orders }}

Pending Orders

{{ total_production }}

Production Orders

View Details
{% if session.role == 'admin' %}
{% endif %}
Recent Jambos
{% if recent_jambos %}
{% for jambo in recent_jambos %} {% endfor %}
Jambo# Color Balance
#{{ jambo.jambo_no }} {{ jambo.colour }} {{ "{:,}".format(jambo.balance_yard) }} yards
{% else %}

No jambos found

{% endif %}
Recent Orders
{% if recent_orders %}
{% for order in recent_orders %} {% endfor %}
Order# Customer Status
#{{ order.order_no }} {{ order.customer_name }} {{ order.status }}
{% else %}

No orders found

{% endif %}
{% endblock %}