We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8737f52 commit a56ae9fCopy full SHA for a56ae9f
mysite/settings.py
@@ -81,3 +81,5 @@
81
# https://docs.djangoproject.com/en/1.6/howto/static-files/
82
83
STATIC_URL = '/static/'
84
+# TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
85
+TEMPLATE_DIRS = [os.path.join(BASE_DIR, 'templates')]
templates/admin/base_site.html
@@ -0,0 +1,9 @@
1
+{% extends "admin/base.html" %}
2
+
3
+{% block title %}{{ title }} | {{ site_title|default:_('Jo site admin') }}{% endblock %}
4
5
+{% block branding %}
6
+<h1 id="site-name"><a href="{% url 'admin:index' %}">Jo Polls administration</a></h1>
7
+{% endblock %}
8
9
+{% block nav-global %}{% endblock %}
0 commit comments