You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 line
703B

  1. {% extends 'base.html.twig' %}
  2. {% block title %}CreditConfig index{% endblock %}
  3. {% block body %}
  4. <h1>liste entités par défaut </h1>
  5. <ul>
  6. {% for entity in entities %}
  7. <li>
  8. {{ dump(entity) }}
  9. <a href="{{ path(routePrefix~'_edit', {"id" : entity.id}) }}">Editer cette entité</a>
  10. <a href="{{ path(routePrefix~'_show', {"id" : entity.id}) }}">Afficher cette entité</a>
  11. {{ include('@LcShop/default/_delete_form.html.twig') }}
  12. </li>
  13. {% else %}
  14. Aucun enregistrement
  15. {% endfor %}
  16. </ul>
  17. <p> <a href="{{ path(routePrefix~'_edit', {"id" : 'new'}) }}">Ajouter une nouvelle entité</a></p>
  18. {% endblock %}