{% extends "stock/stock_app_base.html" %}
{% load static %}
{% load inventree_extras %}
{% load plugin_extras %}
{% load i18n %}
{% block sidebar %}
{% include "stock/location_sidebar.html" %}
{% endblock %}
{% block breadcrumb_tree %}
{% if location %}
{% if location.description %}
|
{% trans "Description" %} |
{{ location.description }} |
{% endif %}
|
{% trans "Location Path" %} |
{{ location.pathstring }} |
{% else %}
|
{% trans "Location Path" %} |
{% trans "Top level stock location" %} |
{% endif %}
{% if ownership_enabled and location_owner %}
|
{% trans "Location Owner" %} |
{{ location_owner }}
{% if not user_owns_location %}
{% trans "Read only" %}
{% endif %}
|
{% endif %}
{% if location and location.barcode_hash %}
|
{% trans "Barcode Identifier" %} |
{{ location.barcode_hash }} |
{% endif %}
{% endblock details_left %}
{% block details_right %}
{% if location %}