1👍
Bad url in url.py
It should looks like this:
(r'^/minion/deleteJob/(\w+)/$', 'deleteJob'),
or if you have also numbers:
(r'^/minion/deleteJob/([a-zA-Z0-9\-\s]+)/$', 'deleteJob'),
Source:stackexchange.com
1👍
Bad url in url.py
It should looks like this:
(r'^/minion/deleteJob/(\w+)/$', 'deleteJob'),
or if you have also numbers:
(r'^/minion/deleteJob/([a-zA-Z0-9\-\s]+)/$', 'deleteJob'),