Worth a look at django-treebeard as a tree library.  I'm doing some
work with it at the moment and I'm very impressed with it so far.
It's pretty easy to separate the different data and connect to a tree-
node object.  IMO the api for tree work is good and all of the SQL
complexity is hidden.

You can choose the storage method of the tree's [i.e. Adjacency Lists
or Materialised Paths], with a common interface between the different
methods - so in theory you can change them later.

Steve

On Feb 24, 5:08 pm, Peter Reimer <pet.rei...@googlemail.com> wrote:
> Hi folks,
>
> I'm looking for a solution/tip for the following problem: I need to
> store hierarchical data, but, with two different kinds of objects
> (groups and items). I googled around and found the often suggested
> mptt package. It looks really great, but I'm not sure about the best
> way to save objects of different models with it.
>
> One idea is, to build the hierarchical structure with one model and
> mptt and in it, I define two ForeignKeys to the concrete data objects
> I want to store (ForeignKey(Group) and Foreignkey(Item)). But this
> sounds a bit strange to me. I think there should be a much smarter
> way.
>
> Any ideas? Many thanks in advance.
> Peter

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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.

Reply via email to