{% extends "agenda_culturel/page-admin.html" %}
{% load utils_extra %}
{% block title %}{% block og_title %}Administration{% endblock %}{% endblock %}
{% load cat_extra %}
{% block entete_header %}
{% css_categories %}
{% endblock %}
{% block sidemenu-bouton %}
{% picto_from_name "chevron-up" %}
{% picto_from_name "chevron-down" %}
{% endblock %}
{% block content %}
{% for w in nb_not_moderated %}
|
{% for m in w %}
{{ m.start_day|date:"d" }} {{ m.start_day|date:"M"|lower }} |
{% endfor %}
reste à modérer
{% for m in w %}
|
<{% if m.not_moderated > 0 %}a href="{% url 'moderate_from_date' m.start_day.year m.start_day.month m.start_day.day %}"{% else %}span class="a"{% endif %}>
{{ m.not_moderated }} / {{ m.nb_events }}{% if m.not_moderated > 0 %}a{% else %}span{% endif %}>
|
{% endfor %}
{% endfor %}
Activité des derniers jours
Résumé des activités
{% include "agenda_culturel/recent-activity-inc.html" with modifications=daily_modifications next=1 %}
Derniers imports
{% include "agenda_culturel/batch-imports-inc.html" with objects=batch_imports next=1 %}
Détail des imports récurrents :
{% include "agenda_culturel/rimports-info-inc.html" with all=1 %}
Derniers événements soumis
{% for e in events %}
{% include "agenda_culturel/single-event/event-in-flat-list-inc.html" with event=e %}
{% endfor %}
{% include "agenda_culturel/side-nav.html" with current="administration" %}
{% endblock %}