diff options
Diffstat (limited to 'chimere/models.py')
-rw-r--r-- | chimere/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/chimere/models.py b/chimere/models.py index 27875ec..f4c7311 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -899,6 +899,7 @@ class PropertyModel(models.Model): name = models.CharField(_(u"Name"), max_length=150) order = models.IntegerField(_(u"Order")) available = models.BooleanField(_(u"Available")) + mandatory = models.BooleanField(_(u"Mandatory")) subcategories = SelectMultipleField(SubCategory, related_name='properties', blank=True, verbose_name=_(u"Restricted to theses sub-categories"), help_text=_(u"If no sub-category is set all the property applies to all " |