django registratations.backends.simple.urls を使用しており、登録ページにカスタマイズされたフィールドを追加したい
simple.backend は軽量であり、ユーザー認証の設定 ("smtp、email など") を必要としないため、default.backend とは異なります。
models.py
from registration.signals import user_registered
from django.dispatch import receiver
class UserProfile(models.Model):
user = models.OneToOneField(User, unique=True, primary_key=True, related_name="user")
# Extra attributes
bio = models.TextField(null=True)
country = models.ForeignKey(Countries, null=True)
@receiver(user_registered)
def registration_active_country(sender, user, request, **kwargs):
print >> sys.stderr , request.POST['country']
funid = request.POST['country']
a = Countries.objects.get(pk=funid)
userid = user.id
user = UserProfile.objects.get(pk=userid)
user.country = a
user.save()
urls.py
url(r'^accounts/register/$', register, {'backend': 'registration.backends.simple.SimpleBackend','form_class': UserRegistrationForm}, name='registration_register'),
url(r'^accounts/', include("registration.backends.simple.urls")),
フォーム.py
class UserRegistrationForm(RegistrationForm):
country = forms.ModelChoiceField(queryset=Countries.objects, label=u'Country', empty_label=u'Not defined')
より良い答えはありますか?