move sitename to end for static pages, fixes #2118

This commit is contained in:
j 2014-02-03 09:35:15 +00:00
parent f34bdd6631
commit e02f1eb6df

View file

@ -1282,7 +1282,7 @@ def item(request, id):
if clip['annotations']: if clip['annotations']:
clip['annotations'] = '<br />\n'.join(clip['annotations']) clip['annotations'] = '<br />\n'.join(clip['annotations'])
clips.append(clip) clips.append(clip)
head_title = u'%s %s' % (settings.SITENAME, item.get('title', '')) head_title = item.get('title', '')
title = item.get('title', '') title = item.get('title', '')
if item.get('director'): if item.get('director'):
head_title += u' (%s)' % u', '.join(item.get('director', [])) head_title += u' (%s)' % u', '.join(item.get('director', []))
@ -1291,6 +1291,7 @@ def item(request, id):
title += u' (%s)' % item.get('year') title += u' (%s)' % item.get('year')
if view: if view:
head_title += u' %s' % view head_title += u' %s' % view
head_title += u' %s' % settings.SITENAME
head_title = ox.decode_html(head_title) head_title = ox.decode_html(head_title)
title = ox.decode_html(title) title = ox.decode_html(title)
ctx = { ctx = {