1👍
the first regex have already matched all urls.
(r'^profile/$','profile'),
(r'^profile/addJob/$', 'addJob'),
(r'^profile/editjob/(?P<jobid>.*)/$', 'editJob')
(r'^(?P<jobtype>[\w|\W]+)/$', 'index'),
Source:stackexchange.com
1👍
the first regex have already matched all urls.
(r'^profile/$','profile'),
(r'^profile/addJob/$', 'addJob'),
(r'^profile/editjob/(?P<jobid>.*)/$', 'editJob')
(r'^(?P<jobtype>[\w|\W]+)/$', 'index'),