12345678910111213141516171819202122232425262728293031 |
- {% extends "layout.html.twig" %}
- {% block style %}
- <link rel="stylesheet" href="{{ asset("bundles/document/css/style.css") }}">{% endblock %}
- {% block title %}Mon livre{% endblock %}
- {% block body %}
- {{ parent() }}
- <table class="table table-bordered">
- <thead class="thead-dark">
- <tr>
- <th>Titre</th>
- <th>Accès</th>
- </tr>
- </thead>
- <tbody>
- <tr>
- <td class="titre-livre">{{ livre.getTitre }}</td>
- <td>{% include "@Document/Document/acces.html.twig" with {'titreWidget': 'Bibliothèque variable'}%}</td>
- </tr>
- </tbody>
- </table>
- {{ render(controller("DocumentBundle:Livre:derniersLivres")) }}
- {% endblock %}
- {% block scripts %}
- <script src="{{ asset('bundles/document/js/scripts.js') }}"></script>
- {% endblock %}
|