{% extends "base.html" %}
{% load static %}
{% block title %}{{ area.name }}{% endblock %}
{% block header_bar %}
{{ area.name }}
{{ area.description}}
{% endblock %}
{% block header_icons %}
{% if user.is_staff %}
{% include 'inventory/set_index.html' with item=area is_index=is_index %}
{% endif %}
{% endblock %}
{% block content %}
{% if area.show_sub_area %}
Areas
{% for a in area.area_related.all %}
{{ a.name }}
|
{% if user.is_staff %}
{% endif %}
|
{% empty %}
No areas defined |
{% endfor %}
{% if user.is_staff %}
Create new area...
{% endif %}
{% endif %}
Containers
{% for box in area.box_related.all %}
{{ box.name }}
|
{% if user.is_staff %}
{% endif %}
|
{% empty %}
No containers defined |
{% endfor %}
{% if user.is_staff %}
Create new container...
{% endif %}
{% endblock %}