filmov
tv
40 Django TemplateView, What is use of TemplateView in Django? With an Example.

Показать описание
Django TemplateView, What is use of TemplateView in Django?
24 (TemplateView)
Example 1
---------
class SelectView(TemplateView):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
return context
Example 2
---------
24 (TemplateView)
Example 1
---------
class SelectView(TemplateView):
def get_context_data(self, **kwargs):
context = super().get_context_data(**kwargs)
return context
Example 2
---------