summaryrefslogtreecommitdiff
path: root/ishtar/ishtar_base/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2011-07-05 16:31:42 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2011-07-05 16:31:42 +0200
commit403bd7de61e4c692a0d3051392a745cd24d16351 (patch)
treee6f7bac7b0c04f5564e81e461f812faf4808cbe7 /ishtar/ishtar_base/models.py
parent7f131cc69ae0cefa0acdb602c89143759a171809 (diff)
downloadIshtar-403bd7de61e4c692a0d3051392a745cd24d16351.tar.bz2
Ishtar-403bd7de61e4c692a0d3051392a745cd24d16351.zip
Remove non used fields for persons (closes #507)
Diffstat (limited to 'ishtar/ishtar_base/models.py')
-rw-r--r--ishtar/ishtar_base/models.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/ishtar/ishtar_base/models.py b/ishtar/ishtar_base/models.py
index 42b79f163..90e593131 100644
--- a/ishtar/ishtar_base/models.py
+++ b/ishtar/ishtar_base/models.py
@@ -418,10 +418,6 @@ class Person(Address, OwnPerms) :
person_type = models.ForeignKey(PersonType, verbose_name=_(u"Type"))
attached_to = models.ForeignKey('Organization',
verbose_name=_(u"Is attached to"), blank=True, null=True)
- is_author = models.NullBooleanField(_(u"Is an author?"), blank=True,
- null=True)
- in_charge_storage = models.NullBooleanField(_(u"In charge of a storage?"),
- blank=True, null=True)
class Meta:
verbose_name = _(u"Person")