From 4d8c616b76edfe3bd8862b588e825d1e29d40950 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sun, 2 Mar 2014 19:12:07 +0100 Subject: Specific form for research archaeology (refs #1682) --- ishtar_common/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ishtar_common/models.py') diff --git a/ishtar_common/models.py b/ishtar_common/models.py index d91d62995..5bebaa59e 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -689,7 +689,7 @@ class Department(models.Model): ordering = ['number'] def __unicode__(self): - return unicode(self.number) + settings.JOINT + self.label + return u"%s (%s)" % (self.label, self.number) class Address(BaseHistorizedItem): address = models.TextField(_(u"Address"), null=True, blank=True) -- cgit v1.2.3