{% extends 'base.html' %} {% block title %}Manufacturing Orders{% endblock %} {% block content %}

Manufacturing Orders

New Order
{% if manufacturing_orders %}
{% for order in manufacturing_orders %} {% endfor %}
Order Number Date Product Quantity Status Total Cost Actions
{{ order.order_number }} {{ order.date|date:"d/m/Y" }} {{ order.product.name }} {{ order.quantity }} {{ order.get_status_display }} Rp {{ order.total_cost|floatformat:0 }}
{% if is_paginated %} {% endif %} {% else %}

No Manufacturing Orders

Start by creating your first manufacturing order.

Create Order
{% endif %}
{% endblock %}