How can I create a url pattern for two parameters where the first parameter contains a forward slash as part of its contents:
da/ta1=/data2
Intially I had the following pattern:
(r'^view/(?P<item_id>\w+=)/(?P<changekey>\w+)/$', 'view'),
However this pattern does not match because of the first forward slash which is part of the parameter data.