列表加载不出来,python3
from django.shortcuts import render
from django.http import HttpResponse
from . import models
def index(request):
articles = models.Article.objects.all()
return render(request, 'blog/index.html',{'articles':articles})
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<h1>
<a href="">新文章</a>
</h1>
{% for aritcle in articles %}
<a href="">{{ articles.title }}</a>
<br/>
{% endfor %}
</body>
</html>