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 | a657ca2449e804fc60ae40422cd463840813285f (patch) | |
| tree | 038feacbb6eaff4d5e531ec417652009ed2f1ce5 /ishtar_common/models.py | |
| parent | 57fa943dbd781e6c7352865c07b1f025ffa5117e (diff) | |
| download | Ishtar-a657ca2449e804fc60ae40422cd463840813285f.tar.bz2 Ishtar-a657ca2449e804fc60ae40422cd463840813285f.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) | 
