From 68e3c3412a86830bf704f9cc13f41fd2fd0161a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Tue, 7 Jun 2016 22:34:23 +0200 Subject: [PATCH] =?UTF-8?q?Ne=20permet=20pas=20de=20d=C3=A9finir=20un=20sp?= =?UTF-8?q?ectacle=20sans=20prix?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bda/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bda/models.py b/bda/models.py index 07e9158d..89ca74ab 100644 --- a/bda/models.py +++ b/bda/models.py @@ -33,7 +33,7 @@ class Spectacle (models.Model): location = models.ForeignKey(Salle) description = models.TextField ("Description", blank=True) slots_description = models.TextField ("Description des places", blank=True) - price = models.FloatField("Prix d'une place", blank=True) + price = models.FloatField("Prix d'une place") slots = models.IntegerField ("Places") priority = models.IntegerField ("Priorité", default=1000) tirage = models.ForeignKey (Tirage)