{% extends 'base.html' %} {% load static %} {% block title %}Manufacturing Dashboard - Manufacturing App{% endblock %} {% block content %}

Manufacturing Dashboard

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

{{ total_boms.count }}

Active BOMs
View BOMs

{{ active_orders.count }}

Active Orders
View Orders

{{ completed_orders.count }}

Completed (30 days)
View Completed
Recent Manufacturing Orders
{% if recent_orders %}
{% for mo in recent_orders %} {% endfor %}
Order Number Product Quantity Status Created Actions
{{ mo.mo_number }} {{ mo.bom.product.name }} {{ mo.quantity_to_produce }} {% if mo.status == 'in_progress' %} In Progress {% elif mo.status == 'completed' %} Completed {% elif mo.status == 'cancelled' %} Cancelled {% else %} {{ mo.get_status_display }} {% endif %} {{ mo.created_at|date:"M d, Y" }} View
{% else %}

No recent manufacturing orders found.

{% endif %}
{% endblock %}