Answer the question
In order to leave comments, you need to log in
How to change url in Django admin logo?
How to change url in Django admin logo? Default url is set/admin/
Answer the question
In order to leave comments, you need to log in
From django/contrin/admin/templates/admin/ copy your base_site.html file to templates/admin/.
In this file, in the branding block, insert your data
...
{% block branding %}
<h1 id="site-name"><a href="{% url 'admin:index' %}">{{ site_header|default:_('Django administration') }}</a></h1>
{% endblock %}
...
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question