In other languages and frameworks I have used when you have an entity such 
as user. Each entity has an event lifecycle i.e. post update, pre update, 
post save etc

The following code below is my first save using Django. But its looks very 
messy, it should be than user has a pre create for member and member has a 
pre create for user depending on which way you are coming at it 
In Django is this possible?      


in my views.py


 user = User.objects.create_user(
                                            
username=form.cleaned_data.get()['username'],
                                            
email=form.cleaned_data['email'], 
                                            
password=form.cleaned_data['password']
                                            )
user.save()
member = Member(
                            user=user,
                            name=form.cleaned_data['name']
                            )
member.save()

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/django-users/-/M2vbXJQCJQAJ.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to