fix: Enhances admin site UI headers
Updates admin interface to include a site title and index title for better user guidance and branding.
This commit is contained in:
parent
fdaddc001b
commit
3a032b02f4
1 changed files with 2 additions and 0 deletions
|
@ -4,6 +4,8 @@ from django.contrib.auth.models import Group
|
|||
from .models import UserRegistration
|
||||
|
||||
admin.site.site_header = "Synapse Registration Administration"
|
||||
admin.site.site_title = "Synapse Registration Administration"
|
||||
admin.site.index_title = "Welcome to the Synapse Registration Administration"
|
||||
|
||||
admin.site.unregister(Group)
|
||||
|
||||
|
|
Loading…
Reference in a new issue