为什么不能在目录中找到我的index.html文件?

时间:2017-06-15 13:53:53

标签: python django

我100%确定我的代码中的路径是正确的,为什么它会给我TemplateDoesNotExist错误?我无法看到这是可能的。

我试过了:

settings.py > TEMPLATES > Dirs: [/template/music]

以及其他事项的清单,但它并没有解决我的问题。

enter image description here

这是我的views.py文件:

from django.http import HttpResponse
from django.template import loader

def index(request):
    template = loader.get_template('music/index.html')
    return HttpResponse(template.render())

def detail(request, user_id): # Testing out page 2
    return HttpResponse("<h2>Page # (testing this out) " + str(user_id) + "</h2>")

这是我的index.html文件:

<!DOCTYPE html>
<html lang="en">
<head>
  <title>The Page</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
  <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>

<body>
    <div class="container">
        <form action="#">
            <div class="form-group">
                <label for="firstName">First Name:</label>
                <input type="email" class="form-control" id="firstName" placeholder="Enter first name" name="firstName">
            </div>
            <div class="form-group">
                <label for="">Last Name:</label>
                <input type="email" class="form-control" id="lastName" placeholder="Enter last name" name="lastName">
            </div>
        </form>
            <div class="checkbox">
                <label><input type="checkbox" name="remember">Remember me</label></div></br>
                <button type="submit" class="btn btn-default">Submit</button>
            </div>
    </div>
</body>
</html>

1 个答案:

答案 0 :(得分:3)

您的模板目录位于迁移内。把它移出那里。