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 <[email protected]> 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 [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> 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 post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to