mirror of
https://github.com/Hopiu/django-rosetta.git
synced 2026-04-02 13:10:23 +00:00
12 lines
326 B
Python
12 lines
326 B
Python
from django.apps import AppConfig
|
|
from rosetta.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'
|