我确信我缺少一些简单的东西。我正在尝试将上下文从我的视图传递到模板,并且似乎无法使其工作。我知道我可以简单地输入模板,但还有其他我需要做的事情,让这个让我在那里分道扬..谢谢。
查看
class ProductView(ListView):
model = Section
template_name = 'products/home.html'
def get_context_data(self, **kwargs):
context_data = super(ProductView, self).get_context_data(**kwargs)
context_data['title'] = 'San Diego'
return context_data
模板
...
<h1>{{ title }}</h1>
...