views.py 294 B

12345678910
  1. from django.shortcuts import render
  2. from django.http import HttpResponse
  3. from .models import ArticlePost
  4. # 视图函数
  5. def article_list(request):
  6. articles = ArticlePost.objects.all()
  7. context = {'articles': articles}
  8. return render(request, 'article/list.html', context)