Tagged Questions
The django-mptt tag has no wiki summary.
10
votes
2answers
319 views
efficient function to retrieve a queryset of ancestors of an mptt queryset
Does anybody have an efficient algorithm to retrieve all ancestors of an mptt queryset? The best I could think of so far is something like this:
def qs_ancestors(queryset):
if ...
6
votes
4answers
295 views
Why can't I save my model instances after editing them?
I have a model which I can instantiate just fine, but once created, if I attempt to save it I get an IntegrityError saying that the primary key must be unique. What's causing this?
There are other ...
5
votes
1answer
747 views
Storing hierarchical (parent/child) data in Python/Django: MPTT alternative?
I'm looking for a good way to store and use hierarchical (parent/child) data in Django. I've been using django-mptt, but it seems entirely incompatible with my brain - I end up with non-obvious bugs ...
4
votes
1answer
262 views
Django-mptt and multiple parents?
I've been banging my head against the desk for a couple weeks on this problem, so I figure it may be time to seek some help.
I'm trying to implement a database structure which has hierarchical data of ...
4
votes
1answer
403 views
How can create a json tree from django-mptt?
I want to use the JavaScript InfoVis Tooljit ( http://thejit.org ) to render a tree of mptt nodes in django. How can i create the required json structure (see ...
4
votes
1answer
905 views
Re-ordering child nodes in django-MPTT
I'm using Ben Firshman's fork of django-MPTT (hat tip to Daniel Roseman for the recommendation).
I've got stuck trying to re-order nodes which share a common parent. I've got a list of primary keys, ...
2
votes
1answer
428 views
django-mptt ImportError
I have installed django-mptt and have followed the documentation regarding setting up a Django model for MPTT
However, I am getting the following ImportError:
from mptt.models import MPTTModel, ...
2
votes
1answer
477 views
How do I rebuild my django-mptt tree?
I'm using django-mptt 0.4.2, and want to rebuild a tree.
The tree manager has a method rebuild() which I try to access like this:
>>> my_rootnode = MyObj.objects.get(id=12)
>>> ...
2
votes
2answers
638 views
How would you sort a django mptt tree?
Imagine that I have an mptt tree of objects and their population like:
Animal, 60
aardvark, 30
bobcat, 20
chipmunk, 10
Vegetable, 6
apple, 1
beet, 2
cauliflower, 3
Mineral 0
How would you ...
1
vote
0answers
41 views
Determining “last” element for each level in django-mptt
I'm trying to generate a list akin to:
<ul>
<li>Parent 1
<ul>
<li>Child 1</li>
<li>Child 2</li>
<li ...
1
vote
1answer
171 views
Django MPTT - absolute url for category
I have the following tree structure:
Cat 1
--Sub Cat 1
--Sub Cat 2
Cat 2
--Sub Cat 1
--Sub Cat 2
----Subsub Cat 1
Using django-mptt I'm able to display this information using 1 query which is ...
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
119 views
show children nodes depending on selected parent
Hi i've been looking all over and can't find the answer to this. I have only 3 months experience in using python/django so excuse my dummy quesion!
Im using django mptt to display a simple nested set ...
1
vote
1answer
127 views
Is it possible to use django-mptt and GenericForeignKey?
The model I'm using at the moment essentially has three classes. A root class, a tree attached to the root class and a leaf node class that can be attached anywhere in the tree.
e.g. ...
1
vote
1answer
253 views
Django-MPTT, how to
Hey, I have just installed the django-mptt lib, but i don't know how to get it to work :(
I have added
from mptt.models import MPTTModel
class Category(MPTTModel):
slug = ...
1
vote
3answers
478 views
Django: Best way for simple hierarchy?
I have this model:
class Category(models.Model):
name = models.CharField()
description = models.CharField(blank=True)
parent = models.ForeignKey('self', blank=True, null=True)
I want ...
1
vote
0answers
281 views
Including foreign key count in django mptt full tree listing?
I'm spitting out my categories tree like so:
<div id="categories-tree">
{% load mptt_tags %}
{% full_tree_for_model bugs.Category as cats cumalative count bugs.Bug.categories %}
{% for node, ...
1
vote
1answer
276 views
Django: Hierarchical URLs
How do you deal with hierarchical URLs in Django? Any best practices for that?
Eg. If I would have an URL like /blog/category1/category2/myblogentry (using eg. django-mptt), would you do some checking ...
1
vote
0answers
261 views
What's my mistake in doing the following in django-mptt?
I have a category tree, with Items entry related to the category. So this is my model file:
from django.db import models
import mptt
class Category(models.Model):
...
1
vote
1answer
947 views
Django-mptt completely buggy or am I doing it wrong?
I'm attempting to use django-mptt with very little luck. This is with Python2.5, windows, sqlite3, Django 1.2pre , django-mptt latest from svn.
The code:
model:
class Node(models.Model):
name ...
1
vote
0answers
315 views
How to retrieve tree structure from node using django-mptt?
In django-mptt full_tree_for_model returns full tree and using drilldown_tree_for_node.
I can get tree without siblings.
How to include siblings?
lets say I have:
a1
-b1
--c1
-b2
-b3
--c3
I want ...
1
vote
1answer
426 views
How do I get the last child in a django-mptt tree?
I want to access the latest object a django-mptt tree.
Is it possible to do this from a django template?
1
vote
1answer
1k views
Django MPTT - tree filtering
I am using MPTT's templatetag to render my genre tree.
{% for genre, structure in genres|tree_info %}
{% if tree.new_level %}<ul><li>{% else %}</li><li>{% endif %}
...
1
vote
2answers
2k views
Problem using django mptt
I am having problem implementing django mptt.
Here is my model:
class Company(models.Model):
name = models.CharField( max_length=100)
parent = models.ForeignKey('self', null=True, ...
0
votes
2answers
29 views
Determining first and last element for each level in django-mptt
I am using django mptt to display navigational menu.
{% load mptt_tags %}
<ul class="nav_menu">
{% recursetree nav_link.get_descendants %}
{% if node.is_shown %}
...
0
votes
1answer
34 views
mptt tree pagination
I want to make simple pagination of mpttmodel instances. I have this model:
class Thing(MPTTModel):
text = models.TextField()
parent = TreeForeignKey('self', null=True, blank=True, ...
0
votes
2answers
48 views
How do I add a trailing slash for Django MPTT-based categorization app?
I'm using Django-MPTT to develop a categorization app for my Django project. But I can't seem to get the regex pattern for adding a trailing slash that doesn't also break on child categories.
Here's ...
0
votes
1answer
74 views
I pass Django json data to Jstree, but it doesn't work fine
I use in Django + django-mptt to complete a win-explorer-tree-like interface with jstree:
{% load mptt_tags %}
var nodedata = {
"data": {
{% recursetree nodes %}
"data": "{{ node.nodename ...
0
votes
0answers
68 views
Django-mptt order
In my project I am using django-mptt for categories.
My model:
class Category(models.model):
name = models.CharField()
parent = models.ForeignKey("self", blank=True, null=True,
...
0
votes
0answers
56 views
how to seperate trees: two ForeignKey in django MPTT
My Model has following struncture:
class Suffix(MPTTModel):
name=models.CharField(max_length=50)
parent = models.ForeignKey('self', related_name='children', null=True, blank=True)
...
0
votes
0answers
112 views
jstree dnd function does not work with django-mptt
I want to use jstree to drag and drop around in my tree using django-mptt but it doesnt work.
Here's my code:
html goes here
<html>
<body>
<div id="tree>
{% if nodes %}
{% ...
0
votes
1answer
24 views
Django mptt returns -2 on get_descendant_count()
I am trying to get the descendants of a root node, but for some reason the function returns -2 on get_descendant_count().
Here's the code:
roots = Project.tree.root_nodes()
...
0
votes
1answer
89 views
Django multiple caches backends
I want to use multiple caching engines in one django project. In example I use sorl.thumbnail, that generated many sql queries to get/set thumbnail for model image. For caching this queries I use ...
0
votes
0answers
38 views
MPTT TreeForeignKey not using help_text or verbose_name
Does anyone who has used django-mptt know if it possible to use the help_text or verbose_name for TreeForeignKey, I can't seem to get it to work, it's not erroring at all though.
Here is how I'm ...
0
votes
0answers
102 views
How to build django-mptt tree without rebuilding after each insert?
I'm building large mptt tree.
I'd like to insert all nodes and after that start method for rebuilding whole tree:
for i in range(big_loop):
...
m.save() # Saving mptt object. Tree is rebuild.
...
0
votes
0answers
67 views
Django + Jinja + mptt = Too many values to unpack error, how do i fix it?
I am using the combination of
Django + Jinja2 + mptt to store and retrieve tree structure.
However, I get the error: ValueError: too many values to unpack
View:
def browse(request, ...
0
votes
1answer
209 views
Extending Django FlatPages to use MPTT
Preface: I was writing my own Page app that used MPTT and a custom page model. This was working for me, but FlatPages is more refined than my custom Page Model and so I'm leaning toward just extending ...
0
votes
0answers
84 views
Django-MPTT - ordering root nodes by count of immediate descendants
I'm using Django-MPTT to do a display a simple 2 level hierarchy (root => child(ren)). I'm looking for a way to structure my queryset so that nodes get returned with the root node having the most ...
0
votes
0answers
91 views
Django MPTT order_by error
models.py
class Category(MPTTModel):
name = models.CharField(max_length=100)
slug = models.SlugField(max_length=200, unique=True)
parent = models.ForeignKey('self', blank=True, null=True, ...
0
votes
1answer
85 views
Custom Chainable QuerySet
This is a piece of my code
from django.db import models
from django.db.models.query import QuerySet
from mptt.models import MPTTModel
from base.models import Content, OrderedContent
class ...
0
votes
1answer
276 views
What went wrong with my django-mptt tree?
I'm using django-mptt 0.4.2 and have trouble with one of my data trees.
Here is the tree as seen in mysql;
mysql> select id, lft,rght,level from my_object where tree_id=30613;
...
0
votes
0answers
96 views
django-mptt not registering model (I'm using django-south)
I have a Subject model:
class Subject(models.Model):
name = models.CharField(max_length = 50)
def __unicode__(self):
return self.name
I wanted it to be a hierarchical model, so I ...
0
votes
1answer
403 views
Ordering django-mptt foreign key in admin not working
Am using django-mptt to create a Categories model and then using that as a foreign key for a Documents model. The Categories admin works fine and categories are displayed in tree order as expected. ...
0
votes
2answers
220 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
293 views
Making a copy of a FeinCMS page tree using django-mptt changes child order
I'm trying to make a copy of a FeinCMS page tree, which is managed using django-mptt. I wrote this function:
def make_tree_copy(page, parent=None):
'''
Makes a copy of the tree starting at ...
0
votes
1answer
152 views
django-mptt children selection works on localhost but not on server
I have the same code on localhost and on server (thanks to mercurial), but it works a little bit different. I want to render category and its subcategories in template using this code:
views.py:
def ...
0
votes
2answers
312 views
django-mptt & django 1.2
From the homepage of django-mptt
Version 0.2.1 is not compatible with Django 1.0 and above - please use SVN trunk for now
I tend to avoid using trunk for work that is going live any time soon, ...
0
votes
1answer
509 views
django-mptt: how to successfully move nodes around
django-mptt seems determined to drive me out of my mind. I'm trying to do something relatively simple: I'm going to delete a node, and need to do something reasonable with the node's children. Namely, ...
0
votes
2answers
429 views
Overriding the save() method of a model that uses django-mptt
I've been using django-mptt in my project for a while now, it's fabulous. Recently, I've found a need to override a model's save() method that uses mptt, and I'm getting an error when I try to save a ...
0
votes
3answers
282 views
django-mptt fields showing up twice, breaking SQL
I'm using django-mptt to manage a simple CMS, with a model called Page, which looks like this (most presumably irrelevant fields removed):
class Page(mptt.Model, BaseModel):
title = ...