def listing(request, section): posts = get_list_or_404(Post, section=section) return render(request, 'posts/listing.html', dict( posts = posts, ))