{% extends "base.html" %} {% block title %}{{ _('Location') }} #{{ location.id }}: {{ location.name | get_translated_text }} — {{ service_name }}{% endblock %} {% block content %}

{{ _('Location') }} #{{ location.id }}: {% for ancestor_id, ancestor_name in ancestors %} {{ ancestor_name | get_translated_text }} / {% endfor %} {{ location.name | get_translated_text }}

{% if locations_tree %}

{{ _('Sub-Locations') }}

{% endif %}
{{ location.description | get_translated_text }}
{{ _('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 %}
{% endblock %}