Improved title generation (Request from Olga).
authorMarek Stępniowski <marek@stepniowski.com>
Wed, 17 Sep 2008 12:17:26 +0000 (14:17 +0200)
committerMarek Stępniowski <marek@stepniowski.com>
Wed, 17 Sep 2008 12:17:26 +0000 (14:17 +0200)
apps/catalogue/templatetags/catalogue_tags.py

index 90cbec3..c315cfe 100644 (file)
@@ -41,17 +41,17 @@ def capfirst(text):
 def simple_title(tags):
     mapping = {
         'author': u'Autor',
-        'theme': u'Motyw',
-        'epoch': u'Epoka',
-        'genre': u'Gatunek',
-        'kind': u'Rodzaj',
-        'set': u'Półka',
+        'theme': u'motyw',
+        'epoch': u'epoka',
+        'genre': u'gatunek',
+        'kind': u'rodzaj',
+        'set': u'półka',
     }
     
     title = []
     for tag in tags:
-        title.append("%s: %s." % (mapping[tag.category], tag.name))
-    return ' '.join(title)
+        title.append("%s: %s" % (mapping[tag.category], tag.name))
+    return capfirst(', '.join(title))
 
 
 @register.simple_tag