Importations récurrentes {% if status %}{{ status }}{% endif %}
{% if status %}
tous : {{ nb_all }}
{% else %}
tous : {{ nb_all }}
{% endif %}
{% if nb_failed > 0 %}—
{% if not status or status != "failed" %}
échoués : {{ nb_failed }}
{% else %}
échoués : {{ nb_failed }}
{% endif %}
{% endif %}
{% if nb_canceled > 0 %}—
{% if not status or status != "canceled" %}
annulés : {{ nb_canceled }}
{% else %}
annulés : {{ nb_canceled }}
{% endif %}
{% endif %}
{% if nb_running > 0 %}—
{% if not status or status != "running" %}
en cours : {{ nb_running }}
{% else %}
en cours : {{ nb_running }}
{% endif %}
{% endif %}
Id
Nom
Récurrence
Nb d'imports
Dernier
Actions
{% for obj in paginator_filter %}
{{ obj.pk }}
{{ obj.name }}
{{ obj.get_recurrence_display }}
{{ obj.nb_imports }}
{% if obj.nb_imports > 0 %}
{% with imp=obj.last_import %}
{% if imp.status == "running" %}{{ imp.status }}{% else %}{{ imp.status }}{% endif %}
{% endwith %}
{% endif %}