partirdezero/blog/context_processor.py

5 lines
No EOL
109 B
Python

from .models import Post
def posts_list(request):
posts = Post.objects.all()
return {'posts': posts}