{% extends "base.html" %} {% block content %}

Material Management

Manage engineering materials

New Material
Total

{{ materials|length }}

Active

{{ materials|selectattr('status', 'equalto', 'Active')|list|length }}

Categories

{{ materials|map(attribute='category')|unique|list|length }}

Suppliers

{{ materials|map(attribute='supplier')|unique|list|length }}

{% if search or category_filter or status_filter %}
Active Filters Clear All
{% endif %}
Material Register {{ materials|length }} Materials
{% for material in materials %} {% else %} {% endfor %}
Code Description Category Supplier Unit Price Status
{{ material.material_code }} {{ material.description }} {{ material.category or "-" }} {{ material.supplier or "-" }} {{ material.unit or "-" }} {{ "%.2f"|format(material.current_price) }} {% if material.status == "Active" %} Active {% elif material.status == "Inactive" %} Inactive {% else %} {{ material.status }} {% endif %}
No materials found.
{% endblock %}