X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/e8cc050f2be1e3cff4b905ef09df52ed42250a28..585c315fde9781b72e1bacd430877c1e5b110e90:/models/base.py?ds=inline diff --git a/models/base.py b/models/base.py index 0077250..1b6e60f 100644 --- a/models/base.py +++ b/models/base.py @@ -234,7 +234,7 @@ class Entity(models.Model): @property def attributes(self): - return QuerySetMapper(self.attribute_set) + return QuerySetMapper(self.attribute_set.all()) @property def _added_attribute_registry(self): @@ -344,7 +344,7 @@ class TreeEntity(Entity, TreeModel): @property def attributes(self): if self.parent: - return QuerySetMapper(self.attribute_set, passthrough=self.parent.attributes) + return QuerySetMapper(self.attribute_set.all(), passthrough=self.parent.attributes) return super(TreeEntity, self).attributes class Meta: