{% extends 'base.html.twig' %} {% block title %}{{ speciality.name }} - {{ parent() }}{% endblock %} {% block body %}

{{ speciality.name }}

Nom Motif de réservation existant Actions
{{ speciality.name }} {% if speciality.reasons is empty %}

Aucun motif de réservation n'a encore été répertorié

{% else %}
    {% for reason in speciality.reasons %}
  • {{ reason.name }}
  • {% endfor %}
{% endif %}
Éditer {% include 'speciality/_delete_form.html.twig' with {'speciality': speciality} %}
{# partie motifs #}

Motifs disponibles

Ajouter un nouveau motif

{% endblock %}