I'm getting an %s is not a registered namespace error in Django 1.11. Is there a way to list what all the registered namespaces are?
You could do the same what reverse actually does: look them up in the namespace_dict:
from django import urls
url_resolver = urls.get_resolver(urls.get_urlconf())
url_resolver.namespace_dict.keys()