So I have the url:
url(r'^mousesmall/(?P<name>.*)/$', IDView.as_view()),
and my view is:
class IDView(DetailView):
model = RNA
template_name = "home/details.html"
Since I'm using the generic view detailview, how would I pass the name value that's captured in the URL to my detail view?