﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
33818	BaseListView get(...) loose kwargs calling self.get_context_data	Mario Signorino	Ziyad Alotaibi	"In BaseListView in /views/generic/list.py the `get` function does not pass `('**kwargs')`	 to `self.get_context_data` at line 174.

{{{
        context = self.get_context_data()
        return self.render_to_response(context)
}}}
I believe should be
{{{
        context = self.get_context_data(**kwargs)
        return self.render_to_response(context)
}}}

In my code there is this url pointing to a ListView  
{{{
path('device/<int:device_id>/history', MyListView.as_view(), name='my_view_name'),
}}}
and in the ListView the ```device_id``` is lost unless I add the ```**kwargs``` as shown above "	Bug	closed	Generic views	4.0	Normal	duplicate	BaseListView		Unreviewed	1	0	0	0	0	0
