My problem is the following: Inside my urls.py I have defined these url patterns:
url(r'^image/upload', 'main.views.presentations.upload_image'),
url(r'^image/upload-from-url', 'main.views.presentations.upload_image_from_url'),
the problem is when I call from my browser the URL myowndomain:8000/image/upload-from-url Django always execute the first pattern (r'^image/upload')
Is there any solution to my problem?