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

Manufacturing Order List

Create Manufacturing Order
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% for mo in mos %} {% empty %} {% endfor %}
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" }}
{% if mo.status == 'in_progress' %} {% endif %}
No manufacturing orders found. Create your first manufacturing order

{{ mos.count }}

Total Orders

{{ mos|length }}

Active Orders

0

Completed Today
{% endblock %}