CSV Preview
{% for table_name, assets, editable in [ ('New Assets', new_assets, true), ('Existing Assets', existing, false) ] %} {% if assets %}
{{ table_name }}
{% for attrib in item_attributes %}
{{ attrib.display_name }}
{% endfor %}
{% for asset in assets %}
{% for attrib in item_attributes %}
{{ asset[attrib.attrib_name] }}
{% endfor %}
{% endfor %}
{% endif %} {% endfor %} {% if new_assets %}
Confirm and Save to Database
{% endif %}
Cancel