19 lines
No EOL
627 B
Python
19 lines
No EOL
627 B
Python
from django.contrib.admin import AdminSite
|
|
from django.utils.translation import ugettext_lazy
|
|
from django.contrib.auth import get_user_model
|
|
|
|
from dbsettings.models import Setting
|
|
|
|
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()
|
|
|
|
joker_admin.register(Setting) |