Question : access kwargs in template django
Answered by : good-guanaco-cm8alv0mh72y
{{ view.kwargs.this_name }}
Source : https://stackoverflow.com/questions/45098826/access-kwargs-from-a-url-in-a-django-template | Last Update : Tue, 07 Sep 21
Question : access kwargs in template django
Answered by : lonely-lapwing-df9x6jafyjf6
class MyView(View): def my_method(self): this_name = self.kwargs['this_name']
Source : https://w3programmers.org/questions/45098826/Access-kwargs-from-a-URL-in-a-Django-template | Last Update : Thu, 31 Mar 22