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

Import Locations from CSV

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

CSV File Format

Location Code Size Description
EX123 100 Zona depozitare A

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 %}