2016-09-03 4 views
1

私はデフォルトのdjango Authシステムを使用しようとしています。それは私がそれを作成しても、登録/ login.htmlでテンプレートを見つけることができないようです。Django 1.10テンプレートへのデフォルトのauthパス

私がログインしようとしたとき、私はこのエラーを取得:

TemplateDoesNotExist at /accounts/login/ 
registration/login.html 
Request Method: GET 
Request URL: http://127.0.0.1:8000/accounts/login/ 
Django Version: 1.10 
Exception Type: TemplateDoesNotExist 
Exception Value:  
registration/login.html 

私のプロジェクトが

http://i.imgur.com/uymMTzd.png

を整理する方法をここでこれは私と同じディレクトリにある私のurls.pyですsettings.py:

from django.contrib.auth import views as auth_views 
from django.conf.urls import url, include # include allows to import files from Apps 
from django.contrib import admin 
from .views import loggedin 

urlpatterns = [ 
    url(r'^admin/', admin.site.urls), 
    url(r'^sharing/', include('sharing.urls')), 

    #auth related URLS 
    url(r'^accounts/login/$', auth_views.login, name='login'), 

最後にここにあります私の設定ファイル: "" " MyFamilyプロジェクトのDjango設定。

Generated by 'django-admin startproject' using Django 1.10. 

For more information on this file, see 
https://docs.djangoproject.com/en/1.10/topics/settings/ 

For the full list of settings and their values, see 
https://docs.djangoproject.com/en/1.10/ref/settings/ 
""" 

import os 

# Build paths inside the project like this: os.path.join(BASE_DIR, ...) 
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) 


# Quick-start development settings - unsuitable for production 
# See https://docs.djangoproject.com/en/1.10/howto/deployment/checklist/ 

# SECURITY WARNING: keep the secret key used in production secret! 
SECRET_KEY = '[email protected]=5p%*_$68th0zuw8!_xebp5s_m(7u-lq2wnvx+zyyrb' 

# SECURITY WARNING: don't run with debug turned on in production! 
DEBUG = True 

ALLOWED_HOSTS = [] 


# Application definition 

INSTALLED_APPS = [ 
    'django.contrib.admin', 
    'django.contrib.auth', 
    'django.contrib.contenttypes', 
    'django.contrib.sessions', 
    'django.contrib.messages', 
    'django.contrib.staticfiles', 
    'sharing.apps.SharingConfig', 
    'widget_tweaks', 
] 

MIDDLEWARE = [ 
    'django.middleware.security.SecurityMiddleware', 
    'django.contrib.sessions.middleware.SessionMiddleware', 
    'django.middleware.common.CommonMiddleware', 
    'django.middleware.csrf.CsrfViewMiddleware', 
    'django.contrib.auth.middleware.AuthenticationMiddleware', 
    'django.contrib.messages.middleware.MessageMiddleware', 
    'django.middleware.clickjacking.XFrameOptionsMiddleware', 
] 

ROOT_URLCONF = 'MyFamily.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', 
      ], 
     }, 
    }, 
] 

WSGI_APPLICATION = 'MyFamily.wsgi.application' 


# Database 
# https://docs.djangoproject.com/en/1.10/ref/settings/#databases 

DATABASES = { 
    'default': { 
     'ENGINE': 'django.db.backends.mysql', 
     'NAME': 'family', 
     'USER': 'root', 
     'PASSWORD': 'azerty', 
    } 
} 

# Password validation 
# https://docs.djangoproject.com/en/1.10/ref/settings/#auth-password-validators 

AUTH_PASSWORD_VALIDATORS = [ 
    { 
     'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', 
    }, 
    { 
     'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', 
    }, 
] 


# Internationalization 
# https://docs.djangoproject.com/en/1.10/topics/i18n/ 

LANGUAGE_CODE = 'fr_FR' 

TIME_ZONE = 'Europe/Paris' 

USE_I18N = True 

USE_L10N = True 

USE_TZ = True 


# Static files (CSS, JavaScript, Images) 
# https://docs.djangoproject.com/en/1.10/howto/static-files/ 

STATIC_URL = '/static/' 

答えて

5

あなたsettings.py

TEMPLATES = [{ 
    'BACKEND': 'django.template.backends.django.DjangoTemplates', 
    'DIRS': ['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', 
     ], 
    }, 
}] 
TEMPLATEStemplates DIRSに配列を追加します。
関連する問題