16 lines
558 B
Python
16 lines
558 B
Python
|
from django.contrib.admin import AdminSite
|
||
|
from django.utils.translation import ugettext_lazy
|
||
|
from django.contrib.auth import get_user_model
|
||
|
|
||
|
class JokerAdmin(AdminSite):
|
||
|
# Text to put at the end of each page's <title>.
|
||
|
site_title = ugettext_lazy('JourneyJoker Administration')
|
||
|
|
||
|
# Text to put in each page's <h1> (and above login form).
|
||
|
site_header = ugettext_lazy('JourneyJoker Administration')
|
||
|
|
||
|
# Text to put at the top of the admin index page.
|
||
|
index_title = ugettext_lazy('JourneyJoker Administration')
|
||
|
|
||
|
joker_admin = JokerAdmin()
|