git.ithinksw.org
/
philo.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Added indices to all Attribute fields to improve lookup speed. Added related_lookup_f...
[philo.git]
/
admin
/
nodes.py
diff --git
a/admin/nodes.py
b/admin/nodes.py
index
dc5ca60
..
fdfbc02
100644
(file)
--- a/
admin/nodes.py
+++ b/
admin/nodes.py
@@
-5,6
+5,11
@@
from philo.models import Node, Redirect, File
class NodeAdmin(TreeEntityAdmin):
list_display = ('slug', 'view', 'accepts_subpath')
class NodeAdmin(TreeEntityAdmin):
list_display = ('slug', 'view', 'accepts_subpath')
+ related_field_lookups = {
+ 'fk': [],
+ 'm2m': [],
+ 'generic': [['view_content_type', 'view_object_id']]
+ }
def accepts_subpath(self, obj):
return obj.accepts_subpath
def accepts_subpath(self, obj):
return obj.accepts_subpath