add_tmdb.html.twig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. {% extends 'videotheque/base.html.twig' %}
  2. {% block title %}
  3. {% if titre is defined %}{{ parent() }} - {{ titre }}{% else %}{{ parent() }}{% endif %}
  4. {% endblock %}
  5. {% block titre %}
  6. {% if titre is defined %}{{ titre }}{% else %}{{ parent() }}{% endif %}
  7. {% endblock %}
  8. {% block body %}
  9. {{ form(form) }}
  10. <table class="table table-bordered table-hover table-striped table-sm align-middle">
  11. <thead>
  12. <tr>
  13. <th></th>
  14. <th>Titre</th>
  15. <th>Date de sortie</th>
  16. <th>Résumé</th>
  17. <th>Action</th>
  18. <th>Realisateur</th>
  19. </tr>
  20. </thead>
  21. <tbody>
  22. {% for idtmdb, film in films %}
  23. <tr>
  24. <td><a type="button" class="btn btn-primary" href="{{ path('videotheque_ajouter', {'idtmdb': idtmdb }) }}">Créér</a></td>
  25. <td>{{ film.titre }}</td>
  26. <td>{% if film.dateSortie %}{{ film.dateSortie | date ('d/m/Y')}}{% endif %}</td>
  27. <td>{{ film.information }}</td>
  28. <td>{% for genre in film.genres %}<span class="badge bg-info me-1">{{ genre.name }}</span>{% endfor %}</td>
  29. <td>{% for realisateur in film.realisateurs %}<span class="badge bg-info me-1">{{ realisateur.nomComplet }}</span>{% endfor %}</td>
  30. </tr>
  31. {% endfor %}
  32. </tbody>
  33. </table>
  34. {% endblock %}