diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-05 17:05:03 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-09-05 17:05:03 +0200 |
commit | 10c8a694f2ffcfc001f5deddcb7d633d9f00b7cc (patch) | |
tree | 0fa618c50ef4dff1e59924f46d78548e9b714cb4 /ishtar_common/models.py | |
parent | 466195bd302ffcabdbcbbef882a269093584d865 (diff) | |
download | Ishtar-10c8a694f2ffcfc001f5deddcb7d633d9f00b7cc.tar.bz2 Ishtar-10c8a694f2ffcfc001f5deddcb7d633d9f00b7cc.zip |
Operation: display statistics on the sheet (refs #2989)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index c536b64ae..186d88f1a 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -2200,6 +2200,7 @@ pre_delete.connect(pre_delete_import, sender=Import) class Organization(Address, Merge, OwnPerms, ValueGetter): TABLE_COLS = ('name', 'organization_type',) + SHOW_URL = 'show-organization' name = models.CharField(_(u"Name"), max_length=500) organization_type = models.ForeignKey(OrganizationType, verbose_name=_(u"Type")) |