]> git.parisson.com Git - teleforma.git/commitdiff
fix
authorGuillaume Pellerin <yomguy@parisson.com>
Mon, 28 Jul 2014 13:25:01 +0000 (15:25 +0200)
committerGuillaume Pellerin <yomguy@parisson.com>
Mon, 28 Jul 2014 13:25:01 +0000 (15:25 +0200)
teleforma/exam/models.py

index debbff634221ac902e9a720f69f1d5a4f79c29fb..4dc437f662f57050a93f93e070be67263fed9afd 100644 (file)
@@ -199,7 +199,7 @@ class Script(BaseResource):
     corrector = models.ForeignKey(User, related_name="corrector_scripts", verbose_name=_('corrector'), blank=True, null=True, on_delete=models.SET_NULL)
     file = models.FileField(_('PDF file'), upload_to='scripts/%Y/%m/%d', blank=True)
     box_uuid  = models.CharField(_('Box UUID'), max_length='256', blank=True)
-    score = models.FloatField(_('score'), blank=True, null=True, localize=True)
+    score = models.FloatField(_('score'), blank=True, null=True)
     comments = models.TextField(_('comments'), blank=True)
     status = models.IntegerField(_('status'), choices=SCRIPT_STATUS, blank=True)
     reject_reason = models.CharField(_('reason'), choices=REJECT_REASON, max_length='256', blank=True)