{% extends "base.html" %} {% block title %}Import Warehouse Locations CSV{% endblock %} {% block head %} {% endblock %} {% block content %}

Import Warehouse Locations from CSV

{% if not locations %}
{% else %}
{% endif %}

Preview Table

{% if locations %} {% for loc in locations %} {% endfor %} {% else %} {% endif %}
Location Code Size Description
{{ loc[0] }} {{ loc[1] }} {{ loc[2] }}
No CSV file uploaded yet.
{% if report %}

Import Report

{{ report }}

{% endif %}
{% endblock %}