diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-14 23:21:09 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-02-14 23:21:09 +0100 |
commit | 21958dc135d79c36e39bd7cd5082b66573600bdf (patch) | |
tree | 18791bb511ce3c77372a2f75499a34b1ad457ca5 /ishtar/furnitures/models.py | |
parent | fc0f041604ddc12fb211cb5fea362f2dea1a5b49 (diff) | |
download | Ishtar-21958dc135d79c36e39bd7cd5082b66573600bdf.tar.bz2 Ishtar-21958dc135d79c36e39bd7cd5082b66573600bdf.zip |
Correct the operation summary (refs #212)
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) |