{% extends 'base.html' %} {% load indonesian_filters %} {% block title %}{{ warehouse.name }} - Manufacturing App{% endblock %} {% block content %}

{{ warehouse.name }}

{{ warehouse.location }}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
Warehouse Status
{% if warehouse.is_active %} Active {% else %} Inactive {% endif %}
Total Products

{{ total_products|indonesian_number:0 }}

Different product types

Total Value

{{ total_value|format_rupiah }}

Based on cost price

Current Inventory
{% if inventory_items %}
{% for item in inventory_items %} {% endfor %}
Product Code Product Name Category Quantity Unit Cost Price Total Value
{{ item.product.code }} {{ item.product.name }} {{ item.product.category.name }} {{ item.quantity|indonesian_number:0 }} {{ item.product.unit_of_measure.abbreviation }} {{ item.product.cost_price|format_rupiah }} {{ item.total_value|format_rupiah }}
{% else %}

No products currently stored in this warehouse.

{% endif %}
Back to Warehouse List
{% endblock %}