无法创建指向我更改的某些 allauth 文件的链接

Cannot create links to some allauth files which I changed

我自定义了 'allauth' password_reset 和 password_change 文件,我的文件结构如下:

模板

_账户

____login

____logout

____password_reset

____password_change

问题是我无法创建指向这两个文件的链接(但我可以创建指向同一文件夹中其他文件的链接。

例如:

<a href="{% url 'account_login' %}">Login</a>

有效,但是

<a href="{% url 'account_password_reset' %}">Reset Password</a>

没有。

我得到的错误是:

NoReverseMatch at /accounts/login/
Reverse for 'account_password_reset' not found.
'account_password_reset' is not a valid view function or pattern name.

我已经尝试了很多东西,但就是想不通。任何帮助将不胜感激。

谢谢。

<a href="{% url 'account_password_reset' %}">Reset Password</a>

而不是使用

<a href="{% url 'account_reset_password' %}">Reset Password</a>