私はDjango 1.9プロジェクトに取り組んでいます。
Django 1.7.7を使用すると、ログイン機能が機能していましたが、今では常にregistration/login.html : Template Does Not Exist
テンプレートlogin.html、logout.htmlは「webgui/template/registration /」にあり、変更していません。
ここに私のsettings.pyのいくつか:
INSTALLED_APPS = [
'Django.contrib.admin',
'Django.contrib.auth',
'Django.contrib.contenttypes',
'Django.contrib.sessions',
'Django.contrib.messages',
'Django.contrib.staticfiles',
'webgui',
]
MIDDLEWARE_CLASSES = [
'Django.middleware.security.SecurityMiddleware',
'Django.contrib.sessions.middleware.SessionMiddleware',
'Django.middleware.common.CommonMiddleware',
'Django.middleware.csrf.CsrfViewMiddleware',
'Django.contrib.auth.middleware.AuthenticationMiddleware',
'Django.contrib.auth.middleware.SessionAuthenticationMiddleware',
'Django.contrib.messages.middleware.MessageMiddleware',
'Django.middleware.clickjacking.XFrameOptionsMiddleware',
]
ROOT_URLCONF = 'project.urls'
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'Django.template.context_processors.debug',
'Django.template.context_processors.request',
'Django.contrib.auth.context_processors.auth',
'Django.contrib.messages.context_processors.messages',
],
},
},
]
DATABASES = {
'default': {
'ENGINE': 'Django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'NCIS.db'),
}
}
STATIC_URL = '/static/'
LOGIN_REDIRECT_URL = '/login/'
LOGOUT_URL = '/logout/'
DIRS = (
join(BASE_DIR, 'webgui/template/registration'),
join(BASE_DIR, 'webgui/template/')
)
と私 urls.py
:
from Django.conf.urls import url
from Django.contrib import admin
from Django.contrib.auth.views import login, logout
import webgui.views
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^$', login, name='login.html'),
url(r'^login/$', login, name='login.html'),
url(r'^logout/$', logout, name='logout.html'),
url(r'^homepage/$', webgui.views.homepage),
url(r'^addproject/$', webgui.views.addproject)
]
どうしましたか? Django docsを確認しましたが、それがデフォルトの動作です。
テンプレートdirパスをDIRS
設定内のTEMPLATES
リストに配置してみてください。 (とにかく、テンプレートフォルダー名はtemplates
ではなくtemplate
にする必要があります。)
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [join(BASE_DIR, 'webgui/template/registration'),join(BASE_DIR, 'webgui/template/')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'Django.template.context_processors.debug',
'Django.template.context_processors.request',
'Django.contrib.auth.context_processors.auth',
'Django.contrib.messages.context_processors.messages',
],
},
},
]
この質問は、registration/login.html : Template Does Not Exist
を検索すると検索エンジンに最初に表示されます
そのため、検索エンジンを使用する場合、このテンプレートはDjangoのデフォルトでは提供されないことに注意してください。作成していない場合は、このエラーが発生します
これが簡単なものを作成する方法です https://simpleisbetterthancomplex.com/tutorial/2016/06/27/how-to-use-djangos-built-in-login-system.html
私のDjango= 1.9.1にアップグレードした後、同じことが起こりました。どうやら、テンプレートディレクトリに更新があります。これを修正する方法を次に示します。
TEMPLATES = [
{
'BACKEND': 'Django.template.backends.Django.DjangoTemplates',
'DIRS': [os.path.join(BASE_DIR, 'templates')],
'APP_DIRS': True,
'OPTIONS': {
'context_processors': [
'Django.template.context_processors.debug',
'Django.template.context_processors.request',
'Django.contrib.auth.context_processors.auth',
'Django.contrib.messages.context_processors.messages',
],
},
},
]
もちろん、BASE_DIRを定義しておく必要があります
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
その後、テンプレートフォルダーを削除し、各アプリのテンプレートフォルダーを作成しました。したがって、各アプリ内で、テンプレートを作成し、htmlファイルをその中に配置するだけです。
ビューでも、次のようにhtmlファイルに接続します。
def index(request):
context_dict = {}
return render(request, 'index.html', context_dict)
これでうまくいきました。
'APP_DIRS': True,
を設定したので、Djangoは、templates
アプリを含むINSTALLED_APPS
の各アプリ内のwebgui
ディレクトリを検索します。
問題は、ディレクトリにwebgui/template/
ではなくwebgui/templates/
という名前を付けているため、アプリローダーがディレクトリを見つけられないことです。
最も簡単な修正は、ディレクトリの名前を変更することです。これを実行したくない場合は、DIRS
オプションにwebgui/template
ディレクトリを追加する必要があります。