Hi,

I'm building a simple catalog.
I have nested categories.
Each category can have either child categories or products but not both
types.
I need to read only one level of child nodes at a time
to create categories and maybe move a branch.

I think I'm going to use two types of models instead of one for categories-
1. CategoryClass - can have only child Category Classes.
2. Category - can have child products.
With the above two models the admin will only be able to add classes to a
class and products to a category.

Do I need to use django-treebeard or can I just define a 'parent' field in
my CategoryClass, Category and Product models?
to move a branch I change the 'parent' field of the top node.
to delete a branch I'm deleting the top node.
I don't need any complex tree traversal.

My questions:
Is using a CategoryClass and Category the best way or can I use just
Category for my purpose?
Am I missing something and still better to use django-treebeard?

Thanks

--

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