templates/home/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Accueil{% endblock %}
  3. {% block heading %}Accueil{% endblock %}
  4. {% block body %}
  5.     <div class="row mt-4">
  6.         {% if is_granted('ROLE_MANAGER') %} 
  7.             <h5 class="form-heading">Suivi des stocks</h5>
  8.             {% include "partials/_card.html.twig" with { label: 'Stocks', path : 'stock_index', icon: 'layer-group'} %}
  9.             {% include "partials/_card.html.twig" with { label: 'Fournisseurs', path : 'provider_index', icon: 'user-tie'} %}
  10.             {% include "partials/_card.html.twig" with { label: 'Commandes fournisseur', path : 'provider_order_index', icon: 'shopping-basket'} %}
  11.             {% include "partials/_card.html.twig" with { label: 'Commandes client', path : 'customer_order_index', icon: 'clipboard-check'} %}
  12.             {% include "partials/_card.html.twig" with { label: 'Historique des stocks', path : 'stock_history_index', icon: 'clock'} %}
  13.         {% endif %}
  14.         {% if is_granted('ROLE_HANDLER') %}
  15.             <h5 class="form-heading form-separation">Fonctions cariste</h5>
  16.             {% include "partials/_card.html.twig" with { label: 'Préparation commande', path : 'unstock_index', icon: 'dolly'} %}
  17.             {% include "partials/_card.html.twig" with { label: 'Stockage', path : 'restock_index', icon: 'boxes'} %}
  18.             {% include "partials/_card.html.twig" with { label: 'Répertorier', path : 'inventory_index', icon: 'plus-square'} %}
  19.             {% include "partials/_card.html.twig" with { label: 'Rechercher un produit', path : 'research_index', icon: 'search'} %}
  20.             {% include "partials/_card.html.twig" with { label: 'Produits en production', path : 'in_production_index', icon: 'list'} %}
  21.         {% endif %}
  22.         {% if is_granted('ROLE_ADMIN') %}
  23.             <h5 class="form-heading form-separation">Administration</h5>
  24.             {% include "partials/_card.html.twig" with { label: 'Utilisateurs', path : 'user_index', icon: 'users'} %}
  25.             {% include "partials/_card.html.twig" with { label: 'Entrepôts', path : 'warehouse_index', icon: 'industry'} %}
  26.         {% endif %}
  27.     </div>
  28. {% endblock %}