mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-03-16 21:30:24 +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"
|