(編集: Django 1.7 以降では廃止されました。それ以上は必要ありません。Alasdair の回答を参照してください)
より細かくコントロールできるようになると思います。のコードを考えてみましょうcontrib.admin.autodiscover
:
def autodiscover():
"""
Auto-discover INSTALLED_APPS admin.py modules and fail silently when
not present. This forces an import on them to register any admin bits they
may want.
"""
import copy
from django.conf import settings
from django.utils.importlib import import_module
from django.utils.module_loading import module_has_submodule
for app in settings.INSTALLED_APPS:
mod = import_module(app)
# Attempt to import the app's admin module.
try:
before_import_registry = copy.copy(site._registry)
import_module('%s.admin' % app)
except:
# Reset the model registry to the state before the last import as
# this import will have to reoccur on the next request and this
# could raise NotRegistered and AlreadyRegistered exceptions
# (see #8245).
site._registry = before_import_registry
# Decide whether to bubble up this error. If the app just
# doesn't have an admin module, we can ignore the error
# attempting to import it, otherwise we want it to bubble up.
if module_has_submodule(mod, 'admin'):
raise
そのため、INSTALLED_APPS admin.py モジュールが自動的に読み込まれ、見つからない場合は黙って失敗します。現在、独自の を使用する場合など、実際にはそれを望まない場合がありますAdminSite
。
# urls.py
from django.conf.urls import patterns, url, include
from myproject.admin import admin_site
urlpatterns = patterns('',
(r'^myadmin/', include(admin_site.urls)),
)
この場合、 を呼び出す必要はありませんautodiscovery()
。
管理者を介してプロジェクトのアプリのサブセットのみを表示または編集したい場合もありますが、呼び出しでautodiscovery()
はそれができません。