{% extends "base.html" %} {% load static %} {% block title %}Products{% endblock %} {% block content %} Products Browse our available products and services Show inactive products {% if products %} {% for product in products %} {% if product.image %} {% endif %} {{ product.name }} {{ product.get_formatted_price }} {{ product.description|truncatewords:20 }} {% if product.status == 'active' %} Active {% else %} Inactive {% endif %} {% endfor %} {% else %} No products available {% if not show_inactive %}(try showing inactive products){% endif %}. {% endif %} {% endblock %}
Browse our available products and services
{{ product.name }}
{{ product.get_formatted_price }}