Tagged Questions
The django-treebeard tag has no wiki summary.
3
votes
5answers
826 views
Treebeard admin in Django
I've setup Treebeard in Django and everything seems to have gone well.
I tried to setup the admin system and I can see my models being presented in the admin interface.
However, when I try to add new ...
3
votes
1answer
727 views
Adjacency List Tree Using Recursive WITH (Postgres 8.4) instead of Nested Set
I'm looking for a Django tree library and doing my best to avoid Nested Sets (they're a nightmare to maintain).
The cons of the adjacency list model have always been an inability to fetch descendants ...
3
votes
4answers
4k views
Django: How do I model a tree of heterogeneous data types?
I need to store a tree data structure in my database, for which I plan on using django-treebeard or possibly django-mptt. My source of confusion is that each node could be one of three different ...
1
vote
1answer
100 views
Sorting email threads in django using mail header information
I have a django app that stores email threads. When I parse the original emails from an mbox and insert them into the database I include the email header parameters 'message-id' and 'in-reply-to'. The ...
1
vote
1answer
707 views
Django treebeard what are differences between AL, NS, MP
I'm trying to make a model for categorizing some objects.
I already tried using django-mptt to easily retrieve related categories, and now I'm searching different solutions to find the best one.
I ...
0
votes
0answers
111 views
Django treebeard queryset filter problem
I want to filter Categories implementem with django treebeard only to leaves in admin.
I know how to filter select list in admin on foreing key but how to do it with is_leaf() method?
This is my ...
0
votes
2answers
222 views
Is it possible to integrate django-taggit and django-mptt / django-treebeard?
I am developing a website that requires tagging up different types of content, which favors using django-taggit. But, it would be extremely beneficial if the tags were represented in the database in ...
0
votes
1answer
118 views
Multiple versions (revisions) of objects with django treebeard MP_Node Tree
I'm using Materialized Path tree (provided by django-treebeard) to create a tree structure ( https://bitbucket.org/hoverhell/xmppforum/src/27207da4a061/snapboard/models.py#cl-363 ).
I'm trying to ...
0
votes
1answer
519 views
Exception when trying to install Django-Treebeard based on instructions
I'm getting a non-descriptive (or at least I don't know how to interpret in this context) error message when sub-lassing from a Django-Treebeard node and am not sure how to debug. I'm using the ...