{% extends 'admin/base.html.twig' %} {% block title %}Fiches{% endblock %} {% block body %}
{% include 'include/side_menu.html.twig' %}
{% include 'include/top_menu.html.twig' %}

Fiches

{% for fiche in fiches if fiche.client.id == 1 %} {% endfor %}
Titre Sous-catégorie Action
{{ fiche.name }} {% if fiche.isCommonThread == true %} fil_rouge {% endif %} {{ fiche.subcategory.name }}
{% for fiche in fiches if fiche.client.id == 2 %} {% endfor %}
Titre Sous-catégorie Action
{{ fiche.name }} {{ fiche.subcategory.name }}
{% endblock %}