Answer the question
In order to leave comments, you need to log in
How to cross filter by owner with model form hierarchy in Django admin?
Created 2 models, one depends on the other, and the second one is a hierarchical directory, and the first is a list of owners of elements of a hierarchical directory.
class Constructor(models.Model): # это наши владельцы
title = models.CharField(max_length=120)
def __unicode__(self):
return self.title
class Section(MPTTModel): # а это наш иерархический справочник
title = models.CharField(max_length=120)
owner = models.ForeignKey(Constructor, parent_link=True) # связь с владельцем
parent = TreeForeignKey('self', null=True, blank=True, related_name='children',
db_index=True) # это поле от библиотеки django-mptt
def __unicode__(self):
return self.title
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question