git.ithinksw.org
/
philo.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Merge branch 'core-1.3-updates' into release
[philo.git]
/
admin
/
nodes.py
diff --git
a/admin/nodes.py
b/admin/nodes.py
index
dc5ca60
..
e2a9c9d
100644
(file)
--- a/
admin/nodes.py
+++ b/
admin/nodes.py
@@
-1,14
+1,24
@@
from django.contrib import admin
from philo.admin.base import EntityAdmin, TreeEntityAdmin, COLLAPSE_CLASSES
from philo.models import Node, Redirect, File
from django.contrib import admin
from philo.admin.base import EntityAdmin, TreeEntityAdmin, COLLAPSE_CLASSES
from philo.models import Node, Redirect, File
+from mptt.admin import MPTTModelAdmin
class NodeAdmin(TreeEntityAdmin):
list_display = ('slug', 'view', 'accepts_subpath')
class NodeAdmin(TreeEntityAdmin):
list_display = ('slug', 'view', 'accepts_subpath')
+ raw_id_fields = ('parent',)
+ related_lookup_fields = {
+ 'fk': raw_id_fields,
+ 'm2m': [],
+ 'generic': [['view_content_type', 'view_object_id']]
+ }
def accepts_subpath(self, obj):
return obj.accepts_subpath
accepts_subpath.boolean = True
def accepts_subpath(self, obj):
return obj.accepts_subpath
accepts_subpath.boolean = True
+
+ def formfield_for_foreignkey(self, db_field, request, **kwargs):
+ return super(MPTTModelAdmin, self).formfield_for_foreignkey(db_field, request, **kwargs)
class ViewAdmin(EntityAdmin):
class ViewAdmin(EntityAdmin):
@@
-28,8
+38,8
@@
class RedirectAdmin(ViewAdmin):
list_display = ('target_url', 'status_code', 'target_node', 'url_or_subpath')
list_filter = ('status_code',)
raw_id_fields = ['target_node']
list_display = ('target_url', 'status_code', 'target_node', 'url_or_subpath')
list_filter = ('status_code',)
raw_id_fields = ['target_node']
- related_
field_lookup
s = {
- 'fk':
['target_node']
+ related_
lookup_field
s = {
+ 'fk':
raw_id_fields
}
}