diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-06 11:00:47 +0100 | 
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-03-06 11:00:47 +0100 | 
| commit | 0f965a724560edbca973765fc252898ea62a6b78 (patch) | |
| tree | 2b04dd511c9395f21768428420a68d222c269160 /ishtar_common/models.py | |
| parent | 138ff99faa986bf7e1d2e71ea3ca6c7d15a354f1 (diff) | |
| download | Ishtar-0f965a724560edbca973765fc252898ea62a6b78.tar.bz2 Ishtar-0f965a724560edbca973765fc252898ea62a6b78.zip | |
Parcel not mandatory: configuration in administration (refs #3962)
Diffstat (limited to 'ishtar_common/models.py')
| -rw-r--r-- | ishtar_common/models.py | 2 | 
1 files changed, 2 insertions, 0 deletions
| diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 3e2cb2440..3c63162c9 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1554,6 +1554,8 @@ class IshtarSiteProfile(models.Model, Cached):                                         default=False)      mapping = models.BooleanField(_(u"Mapping module"), default=False)      underwater = models.BooleanField(_(u"Underwater module"), default=False) +    parcel_mandatory = models.BooleanField( +        _(u"Parcel are mandatory for context records"), default=True)      homepage = models.TextField(          _(u"Home page"), null=True, blank=True,          help_text=_(u"Homepage of Ishtar - if not defined a default homepage " | 
