{% extends 'base.html' %} {% block content %}

Shop

Here you can see the different products and prices.

{% for product in product_list %} {% endfor %}
Description Price Availability Buy
{{ product.name }} {{ product.price }} DKK {{ product.available_in.lower }} {% if product.available_in.upper %} - {{ product.available_in.upper }} {% endif %} {% if product.is_available %} Add to order {% else %} N/A {% endif %}
{% endblock %}