git.ithinksw.org
/
philo.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (from parent 1:
e8b51a3
)
Added a proper related_name argument to the GenericRelation from Entity to Attribute...
author
Joseph Spiros
<joseph.spiros@ithinksw.com>
Wed, 17 Oct 2012 13:52:57 +0000
(09:52 -0400)
committer
Joseph Spiros
<joseph.spiros@ithinksw.com>
Wed, 17 Oct 2012 13:52:57 +0000
(09:52 -0400)
philo/models/base.py
patch
|
blob
|
history
diff --git
a/philo/models/base.py
b/philo/models/base.py
index
e7918f5
..
8aef89a
100644
(file)
--- a/
philo/models/base.py
+++ b/
philo/models/base.py
@@
-284,7
+284,7
@@
class Entity(models.Model):
"""An abstract class that simplifies access to related attributes. Most models provided by Philo subclass Entity."""
__metaclass__ = EntityBase
"""An abstract class that simplifies access to related attributes. Most models provided by Philo subclass Entity."""
__metaclass__ = EntityBase
- attribute_set = generic.GenericRelation(Attribute, content_type_field='entity_content_type', object_id_field='entity_object_id')
+ attribute_set = generic.GenericRelation(Attribute, content_type_field='entity_content_type', object_id_field='entity_object_id'
, related_name='%(app_label)s_%(class)s_set'
)
def get_attribute_mapper(self, mapper=AttributeMapper):
"""
def get_attribute_mapper(self, mapper=AttributeMapper):
"""