From 71e053740008cc40024df99801859035791589e2 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sat, 2 Jun 2018 11:40:33 +0200 Subject: [PATCH] Change admin site header --- manuels_collection/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/manuels_collection/urls.py b/manuels_collection/urls.py index 0029d65..0dda5b9 100644 --- a/manuels_collection/urls.py +++ b/manuels_collection/urls.py @@ -18,6 +18,8 @@ from django.urls import path, include from manuels.views import HomePageView +admin.site.site_header = 'Manuels scolaires - Administration' + urlpatterns = [ path('admin/', admin.site.urls), path('', HomePageView.as_view(), name='home_page'),