@Russel, right, now I know what i'm looking for it makes it easier lol. 
thank you signals is what I needed.

On Wednesday, December 19, 2012 11:29:28 PM UTC, Russell Keith-Magee wrote:
>
> Hi Glyn,
>
> What you're calling "events", Django calls "signals" [1]. In particular, 
> I'm guessing you're looking for the pre_save and post_save signals.
>
> [1] https://docs.djangoproject.com/en/dev/topics/signals/
>
> Yours,
> Russ Magee %-)
>
> On Wed, Dec 19, 2012 at 5:53 PM, Glyn Jackson <cfsp...@gmail.com<javascript:>
> > wrote:
>
>> 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...@googlegroups.com<javascript:>
>> .
>> To unsubscribe from this group, send email to 
>> django-users...@googlegroups.com <javascript:>.
>> For more options, visit this group at 
>> http://groups.google.com/group/django-users?hl=en.
>>
>
>

-- 
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/-/Qzjj1aDVJRMJ.
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