Re: django-registration - Activate view not works

2011-03-14 Thread Cromulent
Sounds to me like you have done the wrong thing in your templates. My registration email template contains this line: http://{{ site }}{% url registration_activate activation_key=activation_key %} which should provide the correct information. If you already have that and it still does not work

Re: django-registration - Activate view not works

2011-03-13 Thread Cromulent
What is the error message you receive? On Mar 13, 5:27 pm, Sergio Berlotto Jr wrote: > I'm using django-registration. > The activation email is generated correctly, but when i'm trying to activate > the new user with generated key sent by e-mail, in > urlhttp://server.com/accounts/activate/ee3ad

Re: Built in password reset views resulting in Caught NoReverseMatch while rendering: Reverse for 'django.contrib.auth.views.password_reset_confirm'

2010-05-31 Thread Cromulent
ions and use them instead. > > TEMPLATE_LOADERS = ( >      'django.template.loaders.filesystem.load_template_source', >      'django.template.loaders.app_directories.load_template_source', > ) > > hth > > Mike > > On 30/05/2010 11:49pm, Cromulent wrote: > >

Re: Built in password reset views resulting in Caught NoReverseMatch while rendering: Reverse for 'django.contrib.auth.views.password_reset_confirm'

2010-05-30 Thread Cromulent
the dictionary the correct template name and that they were available. On May 30, 10:41 am, Cromulent wrote: > I'm using Django 1.2.1 on Mac OS X with Python 2.6.1 if that matters. > I've read the documentation and this is what I have for my urls.py > file: >

Built in password reset views resulting in Caught NoReverseMatch while rendering: Reverse for 'django.contrib.auth.views.password_reset_confirm'

2010-05-30 Thread Cromulent
I'm using Django 1.2.1 on Mac OS X with Python 2.6.1 if that matters. I've read the documentation and this is what I have for my urls.py file: password_reset_dict = { 'post_reset_redirect' : '/profiles/login/', 'email_template_name' : 'registration/password_reset_email.html', 'template