[Django]-What is the namespace and app name for django auth urls?

2👍

I found that after moving the authentication URL out of my app’s urls.py, {% url 'password_reset' %} works, which means that the app_name inherits that of my app.

{% url 'app_name:password_reset' %} would have worked before I moved the authentication URL.

Leave a comment