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

Add Warehouse Location

{% if message %}
{{ message }}
{% endif %}



Import Locations from CSV

Bulk import warehouse locations using a CSV file. Go to Import Page
{% if session['role'] in ['administrator', 'management'] %}
To delete a location, enter the ID of the location and press delete.
To delete 2 or multiple locations, enter the IDs separated by "," and then press delete.
{% endif %}

Warehouse Locations

{% for loc in locations %} {% endfor %}
ID Location Code Size Description
{{ loc[0] }} {{ loc[1] }} {{ loc[2] }} {{ loc[3] }}
{% endblock %}