Hello I have a url and I want to match the uuid the url looks like this:
/mobile/mobile-thing/68f8ffbb-b715-46fb-90f8-b474d9c57134/ <
/mobile/mobile-thing/68f8ffbb-b715-46fb-90f8-b474d9c57134/
Try this regex instead:
\/mobile-thing\/(?P.*)\/$
So it'd be:
urlpatterns = patterns("mobile.views", url(r'^$', 'something_cool', name='cool'), url(r'\/mobile-thing\/(?P.*)\/$', 'mobile_thing', name='mobile-thinger'), )