我的views.py中有这个:
def announcements(request):
return render_to_response('events.html', {
'posts1': Blog.objects.filter(category__title="Announcements")
}, context_instance=RequestContext(request)
)
这在我的 base.html 中:
{{ posts1 }}
但是当我加载主页时,上述请求上下文中的任何内容都不会呈现。
编辑1:
看来我在这里走错了路。我的目标是在整个网站的固定侧边栏中显示“公告”类别下的帖子。无论打开哪个页面,该页面中的侧边栏都应仅包含来自“公告”类别的帖子。关于如何实现它的任何建议?