{# templates/admin/fiche_outil/index.html.twig #} {% extends 'base.html.twig' %} {% block title %}Gestion des fiches outils{% endblock %} {% block body %}

Liste des fiches outils

{% for fiche in fiche_outils %} {% else %} {% endfor %}
{# Sortable: Titre #} {% set isTitre = (sort|default('titre') == 'titre') %} {% set nextDirTitre = isTitre and direction|upper == 'ASC' ? 'DESC' : 'ASC' %} Titre {% if isTitre %} {% else %} {% endif %} {# Sortable: Type #} {% set isType = (sort|default('titre') == 'type') %} {% set nextDirType = isType and direction|upper == 'ASC' ? 'DESC' : 'ASC' %} Type {% if isType %} {% else %} {% endif %} Utilisée dans Actions
{{ fiche.titre }} {{ fiche.type.value }} {% if fiche.pratiques|length > 0 or fiche.etapes|length > 0 or fiche.ficheOutilNiv2s|length > 0 %}
    {% for pratique in fiche.pratiques %}
  • Pratique : {{ pratique.titre }} ({{ pratique.rubrique.parcours.nom }})
  • {% endfor %} {% for etape in fiche.etapes %}
  • Étape : {{ etape.titre }} ({{ etape.rubrique.parcours.nom }})
  • {% endfor %} {% for niv2 in fiche.ficheOutilNiv2s %}
  • Fiche Niv2 : {{ niv2.titre }} {% if niv2.pratique and niv2.pratique.rubrique and niv2.pratique.rubrique.parcours %} ({{ niv2.pratique.rubrique.parcours.nom }}) {% else %} (Parcours non associé) {% endif %}
  • {% endfor %}
{% else %} Non utilisée {% endif %}
Aucune fiche trouvée
Retour Créer une nouvelle fiche
{% endblock %}