{% extends "agenda_culturel/page.html" %}
{% block title %}{% block og_title %}Importations récurrentes
{% if status %}{{ status }}{% endif %}{% endblock %}{% endblock %}
{% load utils_extra %}
{% load rimports_extra %}
{% load cat_extra %}
{% block entete_header %}
{% css_categories %}
{% endblock %}
{% block configurer-bouton %}{% endblock %}
{% block sidemenu-bouton %}
{% picto_from_name "chevron-up" %}
{% picto_from_name "chevron-down" %}
{% endblock %}
{% block content %}
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 }} {% if imp.status == "success" %} ({{ imp.nb_initial }}){% endif %}{% endif %}
{% endwith %}
{% endif %}
|
|
{% endfor %}
{% include "agenda_culturel/side-nav.html" with current="rimports" %}
{% endblock %}