{% extends "base.html" %} {% load static %} {% block title %}Products{% endblock %} {% block content %}

Products

Browse our available products and services

{% if products %}
{% for product in products %}
{% if product.image %}
{{ product.name }}
{% 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 %}