I am trying to link to the django admin in one of my templates:
<a href="{% url 'admin' %}">admin</a>
And I get:
NoReverseMatch at /
Reverse for 'admin' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: []
Ok, fine; it is not called admin
then. I am sorry I do not know that by heart. How is it called? Maybe I have namespaced it? How do I find this? Should I just google for that, go to the admin sources, ...? I will find it eventually, but ... Is there not an easier way? I am in debug mode!
Could I please get a list of all active URLs, with names?