{% extends "shop/base.html" %} {% block title %}{{ title }}{% endblock %} {% block content %}
{% for item in products %}

{{ item.name|title }}

Rs. {{ item.price|floatformat:"2" }}

{{ item.description }}

{% empty %}

Item not available

{% endfor %}
{% endblock %}