{% extends "MedicalStore/layout.html" %} {% block title %} IITJ Health Centre {% endblock%} {% block bodytag %} {% load static %} {% endblock %} {% block body %}

Medical Store



{% for medicine in medicines %}

{{ medicine.name }}

Company             : {{ medicine.company }}
Manufacturing Date : {{ medicine.manufacturedDate }}
Expiry Date : {{ medicine.expiryDate }}
Quantity Remaining : {{ medicine.quantity }}

{% with 'MedicalStore/images/'|add:medicine.photoId as image_static %} Responsive image {% endwith %}

{% empty %}

Sorry! No medicines matching your query are available right now. Please try again later!

{% endfor %} {% endblock %}