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.
Source:stackexchange.com