Rename site title variable

This commit is contained in:
Michal Čihař 2012-03-02 14:11:32 +01:00
parent 488e87e3a1
commit 5df8c19f07
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
{% if title %}
{{ title }}
{% else %}
{{ fallbacktitle }}
{{ site_title }}
{% endif %}

View File

@ -5,4 +5,4 @@ def version(request):
return {'version': trans.VERSION}
def title(request):
return {'fallbacktitle': settings.SITE_TITLE}
return {'site_title': settings.SITE_TITLE}