summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@peacefrogs.net>2012-10-21 15:04:28 +0200
committerÉtienne Loks <etienne.loks@peacefrogs.net>2012-10-21 15:04:28 +0200
commitf31f0f269a68b2dfc5c834ce420bb5a02a3ecd0c (patch)
treea8d881b59447269f2e92578cf5924759bad17704 /ishtar_common/models.py
parent48eb91979705f9999b724c8e2f960fd7931775c1 (diff)
downloadIshtar-f31f0f269a68b2dfc5c834ce420bb5a02a3ecd0c.tar.bz2
Ishtar-f31f0f269a68b2dfc5c834ce420bb5a02a3ecd0c.zip
Djangoization - Major refactoring (step 8)
* clean-up on request and storage args in methods * view creation now managed by South * clean some mess in session values by using MultiValueDict
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 3ca830aa3..d8d3c3213 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -579,9 +579,11 @@ class Person(Address, OwnPerms) :
return lbl
def full_label(self):
- return u" ".join([unicode(getattr(self, attr))
- for attr in ('title', 'surname', 'name', 'attached_to')
- if getattr(self, attr)])
+ values = [unicode(_(self.title))]
+ values += [unicode(getattr(self, attr))
+ for attr in ('surname', 'name', 'attached_to')
+ if getattr(self, attr)]
+ return u" ".join(values)
class IshtarUser(User):
person = models.ForeignKey(Person, verbose_name=_(u"Person"), unique=True)