{% extends "base.html" %} {% block content %}
| Material Code | {{ material.material_code }} |
|---|---|
| Description | {{ material.description }} |
| Category | {{ material.category or "-" }} |
| Supplier | {{ material.supplier or "-" }} |
| Manufacturer | {{ material.manufacturer or "-" }} |
| Part Number | {{ material.part_number or "-" }} |
| Unit | {{ material.unit or "-" }} |
| Current Price | ${{ "%.2f"|format(material.current_price) }} |
| Minimum Stock | {{ material.minimum_stock }} |
| Reorder Level | {{ material.reorder_level }} |
| Location | {{ material.location or "-" }} |
| Status | {% if material.status == "Active" %} Active {% else %} {{ material.status }} {% endif %} |
| Created | {{ material.created_at.strftime('%d %b %Y') if material.created_at else "-" }} |
| Last Updated | {{ material.updated_at.strftime('%d %b %Y %H:%M') if material.updated_at else "-" }} |
| Date | Price |
|---|---|
| {{ price.created_at.strftime('%d %b %Y') }} | ${{ "%.2f"|format(price.price) }} |
| No price history available. | |