gpt4 book ai didi

Django模板错误: Could not parse the remainder: ',' from 'uid,' ?

转载 作者:行者123 更新时间:2023-12-02 09:53:16 25 4
gpt4 key购买 nike

我正在使用带有自定义模板的 Django forgot_password 框架。我正在使用 Django 1.5。我的自定义模板 password_reset_email.html 如下所示:

{% autoescape off %}
You're receiving this e-mail because you requested a password reset for your user account at {{ site_name }}.

Please go to the following page and choose a new password:
{% block reset_link %}
{{ protocol }}://{{ domain }}{% url django.contrib.auth.views.password_reset_confirm uidb36=uid, token=token %}
{% endblock %}

Your username, in case you've forgotten: {{ user.username }}

Thanks for using our site!

The {{ site_name }} team.

{% endautoescape %}

#Exception:
Exception Type: TemplateSyntaxError at /accounts/password/reset/
Exception Value: Could not parse the remainder: ',' from 'uid,'

最佳答案

将其放在顶部:

 {% load i18n %}{% load url from future %}
{% autoescape off %}
..........

删除,,将其放在uidb36=uid,旁边

 {% url 'django.contrib.auth.views.password_reset_confirm' uidb36=uid token=token %}

关于Django模板错误: Could not parse the remainder: ',' from 'uid,' ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15654472/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com