Hello,

I have 3 apps. When records are saved to each app I want to associate
tags to the records. In order for each app to access the same tags I
think I would need a Tag app. Is it possible for models in different
apps to access models in another ?

So..

App1
class m1(models.Model):
tag = models.ManyToMany(Tag) # app4

App2
class m2(models.Model):
tag = models.ManyToMany(Tag) # app4

App3
class m3(models.Model):
tag = models.ManyToMany(Tag) # app4

App4
class Tag(models.Model):
name = models.CharField(max_length=50)

Is it possible for models to access the models in other apps ? If this
is possible, do you have any links to relevent docs or howto's on this
topic. I have been searching but couldn't find the right term to
search for.

Thank you
--~--~---------~--~----~------------~-------~--~----~
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