Extending django-registration using signals
I have found here on stackoverflow a solution to extend django-registration with new fields using signals. Here's the link : http://dmitko.ru/?p=546 . I have created extended profile model, extended form, added required options to settings , defined urls and the proper form is displayed but only normal User (from auth module) is created. Why is that happening ? account.models : from django.db import models from django.contrib.auth.models import User from registration.signals import user_registered import hashlib class InheritedProfile(models.Model): first_name = models.CharField("Name", max