diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-12-03 13:05:06 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-12-03 13:05:06 +0100 |
commit | fd0a0165c3a06ecea377cc9a16ac2706b1dc9d40 (patch) | |
tree | 038feacbb6eaff4d5e531ec417652009ed2f1ce5 /ishtar_common/models.py | |
parent | 677bc165441d508429295f476a28a966efa2ce29 (diff) | |
download | Ishtar-fd0a0165c3a06ecea377cc9a16ac2706b1dc9d40.tar.bz2 Ishtar-fd0a0165c3a06ecea377cc9a16ac2706b1dc9d40.zip |
Better management of raw_names for search and windows
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index e762bf67f..72b41e0cf 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -1864,7 +1864,7 @@ class Person(Address, Merge, OwnPerms, ValueGetter): ('Md', _(u'Mrs')), ('Dr', _(u'Doctor')), ) - TABLE_COLS = ('name', 'surname', 'email', 'person_types_list', + TABLE_COLS = ('name', 'surname', 'raw_name', 'email', 'person_types_list', 'attached_to') title = models.CharField(_(u"Title"), max_length=100, choices=TYPE, blank=True, null=True) |