diff --git a/la_chariotte/order/models.py b/la_chariotte/order/models.py index 0aa203f..93c0ea3 100644 --- a/la_chariotte/order/models.py +++ b/la_chariotte/order/models.py @@ -119,7 +119,7 @@ class Order(models.Model): author = models.ForeignKey(OrderAuthor, on_delete=models.CASCADE) articles_nb = models.PositiveIntegerField(default=0) price = models.DecimalField(max_digits=10, decimal_places=2, default=0) - created_date = models.DateTimeField("Date de la commande", auto_now_add=True) + created_date = models.DateTimeField("Date et heure de commande", auto_now_add=True) note = models.TextField(max_length=200, null=True, blank=True) def compute_order_articles_nb(self):