{% extends "librarian/base.html" %} {% block title %}Location Manager{% endblock %} {% block navbar_items %} {{ block.super }} {% endblock %} {% block content %}
Locations
{% for location in locations %} {% for section in location.section_set.all %} {% for shelf in section.shelf_set.all %} {% endfor %} {% endfor %} {% endfor %}
Location Actions
{{ location.name }} Section Edit Delete
  {{ section.name }} Shelf Edit Delete
      {{ shelf.name }} {{ shelf.copy_set.count }} copies Edit Delete
Location
{% endblock %} {% block page_scripts %} {{ block.super }} {% endblock %}