Am Dienstag, 13. November 2007 09:08 schrieb Thomas Guettler:
> Am Dienstag, 13. November 2007 03:35 schrieb [EMAIL PROTECTED]:
> > Hello,
> >
> > i'm new to django so excuse if this is  a really stupid question.
> >
> > I have these three apps with are inter dependable, how can I make this
> > work in Django maintaining all of this modules separate.
>
> Do you really need three applications (user, multimedia, discussion)?
>
> Maybe you can build one application with one model. You can put the
> source into different files:
>
> #models.py:
> from models_user import User
> from models_mm import Multimedia
> from models_discussion import Discussion
>

Sorry, even this won't help you. Maybe you could
single out the User class if you create a N:M Field
on Discussion, and write a property to access
the discussion object like a foreign key.

class User(...):
    def get_discussion(self):
        from ... import Discussion
        return discussion=Discussion.get(user=self)
    discussion=property(get_discussion)

 Thomas

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to