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

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

{{ _('Location Name (Singular)') }}
{{ location_type.location_name_singular | get_translated_text }}
{{ _('Location Name (Plural)') }}
{{ location_type.location_name_plural | get_translated_text }}
{{ _('Only for Administrators') }}
{% if location_type.admin_only %} {{ _('Yes, only administrators can create locations of this type') }}{% else %} {{ _('No, all users can create locations of this type') }}{% endif %}
{{ _('Enable Parent Location') }}
{% if location_type.enable_parent_location %} {{ _('Yes, locations of this type may have a parent location') }}{% else %} {{ _('No, locations of this type may not have a parent location') }}{% endif %}
{{ _('Enable Sub-Locations') }}
{% if location_type.enable_sub_locations %} {{ _('Yes, locations of this type may have sub-locations') }}{% else %} {{ _('No, locations of this type may not have sub-locations') }}{% endif %}
{{ _('Enable Object Assignemnts') }}
{% if location_type.enable_object_assignments %} {{ _('Yes, objects may be assigned to locations of this type') }}{% else %} {{ _('No, objects may not be assigned to locations of this type') }}{% endif %}
{{ _('Enable Instruments') }}
{% if location_type.enable_instruments %} {{ _('Yes, instruments may be assigned to locations of this type') }}{% else %} {{ _('No, instruments may not be assigned to locations of this type') }}{% endif %}
{{ _('Enable Responsible Users') }}
{% if location_type.enable_responsible_users %} {{ _('Yes, locations of this type may have responsible users') }}{% else %} {{ _('No, locations of this type may not have responsible users') }}{% endif %}
{{ _('Show Location Log') }}
{% if location_type.show_location_log %} {{ _('Yes, show a log for locations of this type') }}{% else %} {{ _('No, do not show a log for locations of this type') }}{% endif %}
{% if current_user.is_admin and not current_user.is_readonly and location_type.fed_id is none %} {{ _('Edit Location Type') }} {% endif %} {% endblock %}