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 wa
In Django 3.0, it's as easy as:
from django.urls import get_resolver print(get_resolver().url_patterns)
Prints: [, ]
[, ]