mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-04-07 15:20:59 +00:00
13 lines
320 B
Python
13 lines
320 B
Python
from django.apps import AppConfig
|
|
|
|
from .conf import settings as rosetta_settings
|
|
|
|
|
|
class RosettaAppConfig(AppConfig):
|
|
name = 'rosetta'
|
|
|
|
def ready(self):
|
|
from django.contrib import admin
|
|
|
|
if rosetta_settings.SHOW_AT_ADMIN_PANEL:
|
|
admin.site.index_template = 'rosetta/admin_index.html'
|