livre.html.twig 764 B

12345678910111213141516171819202122232425262728293031
  1. {% extends "layout.html.twig" %}
  2. {% block style %}
  3. <link rel="stylesheet" href="{{ asset("bundles/document/css/style.css") }}">{% endblock %}
  4. {% block title %}Mon livre{% endblock %}
  5. {% block body %}
  6. {{ parent() }}
  7. <table class="table table-bordered">
  8. <thead class="thead-dark">
  9. <tr>
  10. <th>Titre</th>
  11. <th>Accès</th>
  12. </tr>
  13. </thead>
  14. <tbody>
  15. <tr>
  16. <td class="titre-livre">{{ livre.getTitre }}</td>
  17. <td>{% include "@Document/Document/acces.html.twig" with {'titreWidget': 'Bibliothèque variable'}%}</td>
  18. </tr>
  19. </tbody>
  20. </table>
  21. {{ render(controller("DocumentBundle:Livre:derniersLivres")) }}
  22. {% endblock %}
  23. {% block scripts %}
  24. <script src="{{ asset('bundles/document/js/scripts.js') }}"></script>
  25. {% endblock %}