我正在使用應用程序django-userena來管理用戶帳戶。我有它的工作,並且可以讓用戶註冊,然後他們會收到一封電子郵件來驗證他們的帳戶。但是,我很難判斷我們在哪裏更改基礎URL,因此電子郵件不會使用example.com
。例如,電子郵件目前說:如何設置django應用的基礎url?
感謝您在example.com註冊。
要激活您的帳號,你應該點擊下面的鏈接:
http://example.com/accounts/activate/14bd7b230525224b6bfd71ca4efd531d4694f857/
感謝您使用我們的網站!
真誠,example.com
我明白,這是從下面的模板生成:
{% load i18n %}{% autoescape off %}{% load url from future %}
{% if not without_usernames %}{% blocktrans with user.username as username %}Dear {{ username }},{% endblocktrans %}
{% endif %}
{% blocktrans with site.name as site %}Thank you for signing up at {{ site }}.{% endblocktrans %}
{% trans "To activate your account you should click on the link below:" %}
{{ protocol }}://{{ site.domain }}{% url 'userena_activate' activation_key %}
{% trans "Thanks for using our site!" %}
{% trans "Sincerely" %},
{{ site.name }}
{% endautoescape %}
不過,我想不通的地方example.com
設置 - 我已經試過搜索並查看每個包含此文件的文件,而且我無法找到我應該(或者如果我應該)將URL設置在某處的位置。
我想你可以直接把它放在模板中:「http:// mysite.com {%url'userena_activate'activation_key%}」 – catherine 2013-03-06 03:17:24