This repository has been archived on 2023-02-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
blender-my-data/mydata_main/admin.py
Francesco Siddi d268c8077a Basic admin backend customization
Display site name in admin header templates.
Fixes T56400
2018-08-15 16:54:43 +02:00

8 lines
280 B
Python

from django.contrib import admin
# Configure the admin site. Easier than creating our own AdminSite subclass.
# Text to put at the end of each page's <title>.
admin.site.site_title = 'Blender My Data'
# Text to put in each page's <h1>.
admin.site.site_header = 'Blender My Data'