为什么无法显示文章列表
views.py
from . import models
def index(request):
articles = models.Article.objects.all()
return render(request, 'index.html', {'articles': articles})index.html
{% for article in artcles %}
<a href="">{{ articles.title }}</a>
<br>
{% endfor %}python版本是3.6.5
Django是 1.10.2