I want to add a new function to the default User model of Django for retrieveing a related list of Model type.

Such Foo model:

class Foo(models.Model):
    owner = models.ForeignKey(User, related_name="owner")
    likes = models.ForeignKey(User, related_name="likes")

........

    #at some view
    user = request.user
    foos= user.get_related_foo_models()

Hwo can this be achieved ?

link|improve this question

1  
1  
Aware, but I dont want to add custom field, just a function without altering the original User model. – Hellnar May 30 '10 at 19:24
1  
feedback

1 Answer

up vote 7 down vote accepted

You can add a method to the User

from django.contrib import auth
auth.models.User.add_to_class('get_related_foo_models', get_related_foo_models)

Make sure, you have this code within the models.py or some other file which gets imported in the startup of django.

link|improve this answer
1  
that's pretty nice! Why is it that this method is not documented? I usually created something like this: dpaste.org/IOoy (involves "import new" etc.) Is your approach and my much more complicated one doing essentially the same stuff? – mawimawi May 31 '10 at 13:18
I'm pretty sure this is monkey patching is is generally frowned upon. See discussion here: stackoverflow.com/a/965859/406157 – Jeremy Blanchard Mar 6 at 5:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.