summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-12-23 20:16:10 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-12-23 20:16:10 +0100
commit291aaf52135ace669b6fc86f43d5f6420c0c4435 (patch)
tree3fd012c9f4ec22ab25f1d7bf985d664459a6c8bd /ishtar_common/models.py
parenta0c1264e8925fe2fbacfd7bbbb8ccadf5cd02462 (diff)
downloadIshtar-291aaf52135ace669b6fc86f43d5f6420c0c4435.tar.bz2
Ishtar-291aaf52135ace669b6fc86f43d5f6420c0c4435.zip
Applicant details on treatment file sheet (refs #3383)
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index d4f0c595e..d05ffdd77 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -1498,15 +1498,15 @@ class Address(BaseHistorizedItem):
if self.phone:
if lbl:
lbl += u"\n"
- lbl += u"{}{}".format(unicode(_("Tel: ")), self.phone)
+ lbl += u"{} {}".format(unicode(_("Tel: ")), self.phone)
if self.mobile_phone:
if lbl:
lbl += u"\n"
- lbl += u"{}{}".format(unicode(_("Mobile: ")), self.mobile_phone)
+ lbl += u"{} {}".format(unicode(_("Mobile: ")), self.mobile_phone)
if self.email:
if lbl:
lbl += u"\n"
- lbl += u"{}{}".format(unicode(_("Email: ")), self.email)
+ lbl += u"{} {}".format(unicode(_("Email: ")), self.email)
return lbl