{%extends 'base.html' %} {% block title %} Item Page | Antiques Online {% endblock %} {% block content %}
{{ item.description }}

{{ item.description }}

£{{ item.price }}

{% if item.items %}

Items contained in set:

{% for item in item.items %} {% endfor %}
Item description Item price
{{ item['description'] }} £{{ item['price'] }}
{% endif %}
{% endblock %}