您好,文章列表加载不出来
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <a href="https://www.baidu.com/">新文章</a> {% for article in articels %} <a href="">{{ article.title }}</a> <br/> {% endfor %} </body> </html>
from django.shortcuts import render from . import models def index(request): articles = models.Article.objects.all() return render(request, 'one/index.html', {'articles': articles})