Answers for "change django admin text"

3

change django administration title

#In the project urls.py file
admin.site.site_header = "Admin Portal"
admin.site.site_title = "Admin Portal"
admin.site.index_title = "Welcome to Portal"
Posted by: Guest on June-13-2020
0

how to change django admin text

#how to change django admin text
# django admin text change just copy and past this code in you project urls.py
admin.site.site_header = "UMSRA Admin"
admin.site.site_title = "UMSRA Admin Portal"
admin.site.index_title = "Welcome to UMSRA Researcher Portal"
Posted by: Guest on August-28-2021

Code answers related to "change django admin text"

Python Answers by Framework

Browse Popular Code Answers by Language