I have two patterns like this...
url(r'^(?P<page_lang>\w+)/(?P<page_title>\w+)/$', 'main.views.page', name='page_title'),
url(r'^(?P<foo>\w+)/choice/$', 'main.views.lang_pair_choice', name='lang_pair_choice'),
url(r'^(?P<bar>\w+)/choice2/', include('quiz.urls')),
The problem is that when I pass 2 things into the URL /something/somethingelse it matches the first one and I am not sure how to get it to do something else