Answers for "pass context data with templateview in django"

0

pass context data with templateview in django

class AboutView(TemplateView):
    template_name = 'about.html'

    def get_context_data(self, **kwargs):
        context = super(AboutView, self).get_context_data(**kwargs)
        context['dahl_books'] = Books.objects.filter(author="Dahl")
		return context
Posted by: Guest on September-22-2021

Code answers related to "pass context data with templateview in django"

Python Answers by Framework

Browse Popular Code Answers by Language