{% extends 'settings/layout.html' %} {% load i18n %} {% load utilities %} {% load humanize %} {% block title %}{% trans "Imports" %}{% endblock %} {% block header %} {% trans "Imports" %} {% endblock %} {% block panel %}
{% url 'settings-imports' status as url %} {% if status != "active" %} {% endif %} {% if status == "active" %} {% endif %} {% for import in imports %} {% if status != "active" %} {% endif %} {% if status == "active" %} {% endif %} {% endfor %} {% if not imports %} {% endif %}
{% trans "ID" %} {% trans "User" as text %} {% include 'snippets/table-sort-header.html' with field="user" sort=sort text=text %} {% trans "Date Created" as text %} {% include 'snippets/table-sort-header.html' with field="created_date" sort=sort text=text %} {% trans "Date Updated" %} {% trans "Items" %} {% trans "Pending items" %} {% trans "Successful items" %} {% trans "Failed items" %} {% trans "Actions" %}
{{ import.id }} {{ import.user|username }} {{ import.created_date }}{{ import.updated_date }}{{ import.item_count|intcomma }} {{ import.pending_item_count|intcomma }} {{ import.successful_item_count|intcomma }} {{ import.failed_item_count|intcomma }} {% join "complete" import.id as modal_id %} {% include "settings/imports/complete_import_modal.html" with id=modal_id %}
{% trans "No matching imports found." %}
{% include 'snippets/pagination.html' with page=imports path=request.path %} {% endblock %}