diff --git a/copanier/static/app.css b/copanier/static/app.css
index dc90790..35b4435 100644
--- a/copanier/static/app.css
+++ b/copanier/static/app.css
@@ -337,12 +337,15 @@ th.total {
tr:nth-child(even) {
background-color: #ddd;
}
-tr:nth-child(1) {
+thead tr {
background-color: #3498db;
}
-tr:nth-child(1) * {
+thead tr * {
color: #f1f1f1;
}
+thead th + th {
+ border-left: 1px solid white;
+}
article.order {
max-width: 1200px;
margin-left: auto;
diff --git a/copanier/templates/adjust_product.html b/copanier/templates/adjust_product.html
index b46b16d..cd01bb2 100644
--- a/copanier/templates/adjust_product.html
+++ b/copanier/templates/adjust_product.html
@@ -8,14 +8,18 @@
Manquant {{ delivery.product_missing(product) }}
diff --git a/copanier/templates/delivery.html b/copanier/templates/delivery.html
index 349459b..5451311 100644
--- a/copanier/templates/delivery.html
+++ b/copanier/templates/delivery.html
@@ -5,7 +5,7 @@
{% include "includes/delivery_head.html" %}
-
+
Référence |
Produit |
@@ -24,6 +24,8 @@
{% endfor %}
+
+
{% for product in delivery.products %}
{{ product.ref }} |
diff --git a/copanier/templates/place_order.html b/copanier/templates/place_order.html
index b5d5a11..922c505 100644
--- a/copanier/templates/place_order.html
+++ b/copanier/templates/place_order.html
@@ -6,6 +6,7 @@
{% include "includes/delivery_head.html" %}