{% extends 'base.html' %} {% load static %} {% block title %}Manufacturing Order List - Manufacturing App{% endblock %} {% block content %}
| MO Number | Product | Quantity | Status | Scheduled Start | Scheduled End | 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.scheduled_start_date|date:"M d, Y" }} | {{ mo.scheduled_end_date|date:"M d, Y" }} | |
| No manufacturing orders found. Create your first manufacturing order | ||||||