{% extends "core/base.html" %} {% block content %}

Inventory

{% for object in object_list %}

{{object.item.name}}

{{object.item.description}}
You own {{object.quantity}} of this item.
{% if object.item.attack or object.item.defense %} {% endif %} {% if object.item.image %} {{object.item.image_alt}} {% endif %}
{% empty %} Your inventory is empty. {% endfor %}
{% endblock content %}