django-registration

adding extra field to django-registration using signals

I want to add a locale selection to the default django-registration. I tried to follow this tutorial from dmitko. The form shows up correctly but the additional data (locale) is not saved. I defined a custom model: class AnymalsProfile(models.Model): user = models.ForeignKey(User, unique=True) locale = models.CharField(max_leng...

Different user profiles with django-profiles & django-registration

My models.py: USER_TYPES = ( ('D', 'Demo' ), ...

django-registration 0.8 signal not working

Hey there, Now im working this base on dmitko tutorial on extending django-registration post, all went out fine, just the i can't received the user_registered signal properly. forms.py from django import forms from registration.forms import RegistrationForm from models import UserProfile class UserProfileForm(RegistrationForm): fu...

Pass success_url to the activate

Docs say : ``success_url`` The name of a URL pattern to redirect to on successful acivation. This is optional; if not specified, this will be obtained by calling the backend's ``post_activation_redirect()`` method. How can I do it ? ...

Python + Django ImportError: cannot import name signals from Python2.5 to Python2.7

Hello anyone, I have django-registration installed. I just updated my Python installation from 2.5 to 2.7. Everything works okay but when I try to run my Django app, I get the error below. C:\django\pley>python manage.py runserver Validating models... Unhandled exception in thread started by <function inner_run at 0x02FA6830> Tracebac...