web-dev-qa-db-ja.com

django 1.9およびregistration / login.html

私は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を確認しましたが、それがデフォルトの動作です。

13
Isador

テンプレート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',
        ],
    },
},
]
8
doru

この質問は、registration/login.html : Template Does Not Existを検索すると検索エンジンに最初に表示されます

そのため、検索エンジンを使用する場合、このテンプレートはDjangoのデフォルトでは提供されないことに注意してください。作成していない場合は、このエラーが発生します

これが簡単なものを作成する方法です https://simpleisbetterthancomplex.com/tutorial/2016/06/27/how-to-use-djangos-built-in-login-system.html

10
Ramast

私の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)

これでうまくいきました。

8

'APP_DIRS': True,を設定したので、Djangoは、templatesアプリを含むINSTALLED_APPSの各アプリ内のwebguiディレクトリを検索します。

問題は、ディレクトリにwebgui/template/ではなくwebgui/templates/という名前を付けているため、アプリローダーがディレクトリを見つけられないことです。

最も簡単な修正は、ディレクトリの名前を変更することです。これを実行したくない場合は、DIRSオプションにwebgui/templateディレクトリを追加する必要があります。

4
Alasdair