{% extends "base.html" %} {% block boutons_droite %} {% if famille %} {% include './famille_boutons.html' with active='prestation' %} {% endif %} {% endblock %} {% block content %}
{% if famille %}
Famille {{ famille.nom }} - {{ famille.adresse }}
Ajouter {% if filter_form %}
{{ filter_form.as_div }}
{% endif %}
{% else %}
Mes prestations générales
Ajouter
{% endif %}
{% for prestation in prestations %} {% empty %} {% endfor %}
Date Durée Interv. Contenu Auteur Prest. Actions
{{ prestation.date_prestation|date:"d.m.Y" }} {{ prestation.duree|strip_seconds }} {{ prestation|sigles_intervenants }} {{ prestation.texte|truncate_html_with_more:40 }} {{ prestation.fichier|as_icon }} {{ prestation.auteur|sigle_personne }} {{ prestation.lib_prestation.nom }} {% with fam_pk=famille.pk|default:0 %} {% if prestation|can_edit:user %} {% endif %} {% endwith %}
{% if filter_form.cleaned_data.recherche or filter_form.cleaned_data.famille %} Pas de résultat pour votre recherche. {% else %} Aucune prestation saisie {% endif %}
{% endblock %}