{% extends "base.html" %} {% block content %} {% include "stock/loc_link.html" with location=location %}

{{ location.name }}

{{ location.description }}

{% if location.has_children %}

Sub Locations

{% include "stock/location_list.html" with locations=location.children %} {% endif %} {% if location.has_items %}

Stock Items

{% include "stock/stock_table.html" with items=location.items %} {% endif %}
{% endblock %}