我正在开发一个用于用户注册和登录的应用程序。我已经制作了注册表格,现在我想制作一个登录页面,因此我制作了一个 login.html 文件,现在我希望它被放置在模板。因此,我创建了一个目录并将其放在该目录home/html/templates/registration/login.html
settings.py文件中的 Template_dir=()如下:
TEMPLATE_DIRS = (
'/home/html/templates',
)
视图文件为
from django.template import loader
from registration.models import Registration
from django.http import HttpResponse
def login(request):
t = loader.get_template('registration/login.html')
return HttpResponse()
但是当我尝试将此文件作为localhost:8000/registration/login.html运行时,我收到 404 错误 Page not found
url.py文件中给出的 url如下:
url(r'^registration/$', 'registration.views.login'),