Bläddra i källkod

Un beau tableau

François 6 år sedan
förälder
incheckning
7f71b6cab7
1 ändrade filer med 7 tillägg och 6 borttagningar
  1. 7 6
      src/DocumentBundle/Resources/views/Document/livre.html.twig

+ 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>