﻿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
28587	ListView cleaning ar	Adrian	nobody	"When I have in my urlpatterns args and kwargs the ListView is loosing args (it's returning empty tuple)


{{{
url(r""^(\w+)/test1/(?P<pk>[0-9]+)/list/$"", SamplesListView.as_view(), name='list_view'),
}}}

Simple code for my view:


{{{
class SamplesListView(ListView):
    model = Sample
    template_name = 'samples/samples_list.html'

    def get(self, request, project_name, *args, **kwargs):
        print(""project_name"", project_name)
        return super().get(self, request, project_name, *args, **kwargs)
}}}


It works ok when I pass only args or kwargs into url."	Bug	new	Generic views	1.11	Normal		ListView, CBV, generic,		Unreviewed	0	0	0	0	0	0
