How can I see the current urlpatterns that "reverse" is looking in?
I'm calling reverse in a view with an argument that I think should work, but doesn't. Any way I can check what's there and why my pattern isn't?
If you want a list of all the urls in your project, first you need to install django-extensions, add it to your settings like this:
INSTALLED_APPS = (
...
'django_extensions',
...
)
And then, run this command in your terminal
./manage.py show_urls
For more information you can check the documentation.