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

๐Ÿ’Š Medicine Inventory Management

Add/Edit Medicine

Leave empty to auto-generate
๐Ÿ“ฅ Import Medicines ๐Ÿ“ฅ Download Sample

Medicine Inventory

{% if medicines %}
{% for medicine in medicines %} {% endfor %}
Medicine ID Name Category Stock Unit Price Expiry Date
{{ medicine[0] }} {{ medicine[1] }} {{ medicine[2] }} {{ medicine[3] }} ${{ "%.2f"|format(medicine[4]|float) }} {{ medicine[5] if medicine[5] else 'N/A' }}
{% else %}

No medicines found.

{% endif %}
{% endblock %}