{% extends "base.html" %} {% block title %}{{ _('Location Types') }} — {{ service_name }}{% endblock %} {% block content %}

{{ _('Location Types') }}

{{ _('Location Types represent different kinds of locations, such as rooms or containers.') }} {{ _('Read more.') }}

{% if current_user.is_admin and not current_user.is_readonly %} {{ _('Create Location Type') }} {% endif %} {% for location_type in location_types %}

{{ location_type.name | get_translated_text }} {{ import_information_symbol(location_type) }}

{% if current_user.is_admin and not current_user.is_readonly and location_type.fed_id is none %}

{{ _('Edit Location Type') }}

{% endif %} {% endfor %} {% endblock %}