{% extends "base.html" %} {% block title %}Stock Locations{% endblock %} {% block content %}

Stock Locations

{% if current_branch %} Clear {% endif %}
{% for location in locations %} {% empty %} {% endfor %}
NameBranchCodeStatusDescription
{{ location.name }} {{ location.branch.name|default:"-" }} {{ location.code|default:"-" }} {% if location.is_active %}Active{% else %}Inactive{% endif %} {{ location.description|default:"-" }}
No locations.
{% endblock %}