Hi, I did not see any section of Django documentation related to attaching managers to models outside of model definition.
My current case is a manager defined in a separate module (long story short: to avoid circular imports), that I expected to attach to a model with a naive statement: MyModel.foo_objects = MyManager() Unfortunately this manager returns nothing. Its 'model' attribute is empty, and digging in the source code, I noticed methods 'contribute_to_class / add_to_class'; but I did not play with any of these yet. So my questions are: 1) Is it possible to attach managers outside of model definition (as far as I recall it was possible in versions < 1.0) ? 2) Did I miss the section in Django's documentation (or is it well- hidden?) 3) Provided answer to question 1 is 'yes', what is the way to attach a custom manager to a model? Thanks in advance, I could not see any similar message request or any ticket filled in against documentation. Thierry. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. 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 -~----------~----~----~----~------~----~------~--~---