{% extends "portail/fiche.html" %} {% load crispy_forms_tags %} {% load static %} {% load embed %} {% block detail_fiche %}
{% embed 'core/box.html' %} {% block box_theme %}card-outline card-lightblue{% endblock %} {% block box_titre %}{{ box_titre }}{% endblock %} {% block box_introduction %}{{ box_introduction|safe }}{% endblock %} {% block box_contenu %} {% embed "individus/alerte.html" with items=vaccins_obligatoires titre="Vaccinations obligatoires"%} {% endembed %}
{% if liste_vaccinations %} {% for vaccin in liste_vaccinations %} {% endfor %}
Type de vaccin Date Actions
{{ vaccin.type_vaccin }} {{ vaccin.date|date:'d/m/Y' }}
{% else %} Aucune vaccination enregistrée. {% endif %}
Ajouter une vaccination {% endblock box_contenu %} {% block box_conclusion %}{{ box_conclusion|safe }}{% endblock %} {% endembed %}
{% endblock %}