diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-04-10 18:15:11 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-06-12 08:39:42 +0200 |
commit | 184e6614b0c3e5cf2c8290923d0aa4fd27dd20b4 (patch) | |
tree | 4fceabe9c28aa2360353aa9296b730acfbf3067b /ishtar_common/models.py | |
parent | a434d1410714d2758636936cfac820179b710610 (diff) | |
download | Ishtar-184e6614b0c3e5cf2c8290923d0aa4fd27dd20b4.tar.bz2 Ishtar-184e6614b0c3e5cf2c8290923d0aa4fd27dd20b4.zip |
Remove groups from person types (refs #4046)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 3eceb8df0..24b16c873 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2373,10 +2373,6 @@ class Organization(Address, Merge, OwnPerms, ValueGetter): class PersonType(GeneralType): - # rights = models.ManyToManyField(WizardStep, verbose_name=_(u"Rights")) - groups = models.ManyToManyField(Group, verbose_name=_(u"Groups"), - blank=True) - class Meta: verbose_name = _(u"Person type") verbose_name_plural = _(u"Person types") |