maybe this question is repeated but I can't find any solution exactly what I need. I need to pass two differents parameters to one url in a DetailView (Im not working with function views, mostly of possible solutions that I have found are with function views). I have some views done but it does not make sense put it here because are not working. How can I achieve this? For example:
url(r'^crear-puntointeraccion/(?P<pk>[-_\w]+)/(?P<point_id>[-_\w]+)/$'
And if it does not find a pk or a point_id show 404, I have something done but only takes one parameter, the other parameter it does not taking it because if I write some non-existent ID anyway show the result.