I am dealing with the following code in a Django template:
<!-- Override title of base -->
{% block title %}{{ title }} | {{ site_title|default:_('Hello World') }}{% endblock %}
For the Django admin web site, the value of the title variable above (i.e. {{ title }}
) defaults to "Log in". Where is this value being defined? I would like to change this value but pass it in rather than hard code it.