django用户帐户中的变量(pinax)

django用户帐户中的变量(pinax),django,pinax,Django,Pinax,在pinax项目中,如何配置变量(例如,{current_site}、{{email_url}、{{activate_url}}等),以适应django用户帐户、pinax应用程序 例如,当我配置我的settings.py和set ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = True 现在,当我创建一个新用户时,我得到了消息 Confirm your email address We have sent you an email to e@e.com for

在pinax项目中,如何配置变量(例如,{current_site}、{{email_url}、{{activate_url}}等),以适应django用户帐户、pinax应用程序

例如,当我配置我的settings.py和set

ACCOUNT_EMAIL_CONFIRMATION_REQUIRED = True
现在,当我创建一个新用户时,我得到了消息

Confirm your email address

We have sent you an email to e@e.com for verification. 
Follow the    link provided to finalize the signup process. 
If you do not receive it within a few minutes, contact us 
at support@example.com

所以我的问题是,这些Django变量在哪里?我如何按顺序更改它们support@example.com更改所需的电子邮件地址?

添加到您的设置中。py

THEME_CONTACT_EMAIL = 'desired@email.com'

我从来没有使用过pinax,但谷歌快速搜索显示,定制该变量取决于您使用的主题。看一看