{% extends 'base.html' %} {% load static %} {% block title %}Manufacturing Dashboard - Manufacturing App{% endblock %} {% block content %}
| 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 |
No recent manufacturing orders found.
{% endif %}