François 6 anni fa
parent
commit
7f71b6cab7

+ 7 - 6
src/DocumentBundle/Resources/views/Document/livre.html.twig

@@ -7,17 +7,18 @@
 
 {%  block body %}
     {{  parent() }}
-    <table class="table table-dark">
-	<thead>
+    <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>
+		<tr>
+		    <td class="titre-livre">{{ livre.getTitre }}</td>
+		    <td>{% include "@Document/Document/acces.html.twig" with {'titreWidget': 'Bibliothèque variable'}%}</td>
+		</tr>
 	</tbody>
 
     </table>