Django Ecom
Welcome to Django
Submit
{% for type in type_objs %} {% if forloop.first %}
{{ type.name }}
{% else %}
{{ type.name }}
{% endif %} {% endfor %}
{% for type in type_objs %} {% if forloop.first %}
{% else %}
{% endif %}
{% for product in type.product_set.all %} {% if product.quantity > 0 %}
{{product.price}}
{{product.quantity}}
{{ product.name }}
{% endif %} {% endfor %}
{% endfor %}