diff options
Diffstat (limited to 'ishtar/furnitures/models.py')
-rw-r--r-- | ishtar/furnitures/models.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar/furnitures/models.py b/ishtar/furnitures/models.py index 0c2f07433..03a01e872 100644 --- a/ishtar/furnitures/models.py +++ b/ishtar/furnitures/models.py @@ -382,10 +382,10 @@ class Operation(BaseHistorizedItem, OwnPerms): fnap_financing = models.FloatField(u"Financement FNAP", blank=True, null=True) TABLE_COLS += ["code_patriarche", "code_dracar"] - zoning_prescription = models.NullBooleanField(_(u"Prescription on zoning"), - blank=True, null=True) + zoning_prescription = models.NullBooleanField( + _(u"Prescription on zoning"), blank=True, null=True) large_area_prescription = models.NullBooleanField( - _(u"Prescription on large area"), blank=True, null=True) + _(u"Prescription on large area"), blank=True, null=True) geoarchaeological_context_prescription = models.NullBooleanField( _(u"Prescription on geoarchaeological context"), blank=True, null=True) comment = models.TextField(_(u"Comment"), null=True, blank=True) |