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 support for DateTime information being stored in a JSONAttribute. Switched...
[philo.git]
/
admin
/
nodes.py
diff --git
a/admin/nodes.py
b/admin/nodes.py
index
093537e
..
a576d44
100644
(file)
--- a/
admin/nodes.py
+++ b/
admin/nodes.py
@@
-1,10
+1,14
@@
from django.contrib import admin
from django.contrib import admin
-from philo.admin.base import EntityAdmin
+from philo.admin.base import EntityAdmin
, TreeEntityAdmin
from philo.models import Node, Redirect, File
from philo.models import Node, Redirect, File
-class NodeAdmin(EntityAdmin):
- pass
+class NodeAdmin(TreeEntityAdmin):
+ list_display = ('slug', 'view', 'accepts_subpath')
+
+ def accepts_subpath(self, obj):
+ return obj.accepts_subpath
+ accepts_subpath.boolean = True
class ViewAdmin(EntityAdmin):
class ViewAdmin(EntityAdmin):