{% extends "base.html" %} {% block title %}Location #{{ location.id }}: {{ location.name }} — {{ service_name }}{% endblock %} {% block content %}

{% for ancestor_id, ancestor_name in ancestors %} {{ ancestor_name }} / {% endfor %} {{ location.name }}

{{ location.description }}
View Objects {% if not current_user.is_readonly and (not config['ONLY_ADMINS_CAN_MANAGE_LOCATIONS'] or current_user.is_admin) %} Edit Location Create Sub-Location {% endif %} {% if locations_tree %}

Sub-Locations

{% endif %} {% endblock %}