diff options
Diffstat (limited to 'ishtar/furnitures/models.py')
-rw-r--r-- | ishtar/furnitures/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar/furnitures/models.py b/ishtar/furnitures/models.py index ef5ad8cb2..5613e6942 100644 --- a/ishtar/furnitures/models.py +++ b/ishtar/furnitures/models.py @@ -229,7 +229,7 @@ class File(BaseHistorizedItem, OwnPerms): file_type = models.ForeignKey(FileType, verbose_name=_(u"File type")) in_charge = models.ForeignKey(Person, related_name='+', verbose_name=_(u"Person in charge")) - general_contractor = models.ForeignKey(Organization, related_name='+', + general_contractor = models.ForeignKey(Person, related_name='+', verbose_name=_(u"General contractor"), blank=True, null=True) is_active = models.BooleanField(_(u"Is active?")) towns = models.ManyToManyField("Town") |