{% extends "maraudes/base.html" %} {% block title %} {{ block.super }} Tableau de bord {% endblock %} {% block breadcrumbs %} {% endblock %} {% block page_content %} {% load tables %}
Planning
Prochaine maraude

{% if prochaine_maraude %} Le {{ prochaine_maraude.date }} à {{ prochaine_maraude.heure_debut }} avec {% if user == prochaine_maraude.referent %} {{prochaine_maraude.binome}} {% else %} {{prochaine_maraude.referent}} {% endif %}. {% else %} Aucune maraude prévue. {% endif %}

{% if prochaine_maraude.date == date %} Rédiger le compte-rendu {% endif %} Voir le planning Toutes les maraudes
{% if derniers_sujets_rencontres %}
En ce moment nous croisons...
{% for sujet in derniers_sujets_rencontres %} {{ sujet }}
{% endfor %}
{% endif %} {% if derniers_sujets_signales %}
Signalements récents
{% for sjt in derniers_sujets_signales %} {{ sjt }} {% endfor %}
{% endif %}
{% if user.is_superuser and missing_cr %}
Compte-rendus en retard
{% for cr in missing_cr %} {{cr}} {% endfor %}
{% endif %}
{% include "notes/form_note_inner.html" with form=note_form %}
{% include "notes/form_appel_inner.html" with form=appel_form %}
{% include "notes/form_signalement_inner.html" with form=signalement_form %}
{% endblock %}