{% load inventree_extras %} {% load i18n %} {% load static %} {% block form_alert %} {% if missing_columns and missing_columns|length > 0 %} {% endif %} {% if duplicates and duplicates|length > 0 %} {% endif %} {% endblock form_alert %} {% block form_buttons_top %} {% if wizard.steps.prev %} {% endif %} {% endblock form_buttons_top %} {% block form_content %} {% trans "File Fields" %} {% for col in form %}
{{ col.name }}
{% endfor %} {% trans "Match Fields" %} {% for col in form %} {{ col }} {% for duplicate in duplicates %} {% if duplicate == col.value %} {% endif %} {% endfor %} {% endfor %} {% for row in rows %} {% with forloop.counter as row_index %} {{ row_index }} {% for item in row.data %} {{ item }} {% endfor %} {% endwith %} {% endfor %} {% endblock form_content %} {% block form_buttons_bottom %} {% endblock form_buttons_bottom %} {% block js_ready %} {{ block.super }} $('.fieldselect').select2({ width: '100%', matcher: partialMatcher, }); {% endblock %}