X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/596ad981f61660468f9135255048754ccd7627fb..0eea7e496496023e9f68b4e1dc6a7956da7e917e:/admin/nodes.py?ds=sidebyside diff --git a/admin/nodes.py b/admin/nodes.py index 45a3172..a576d44 100644 --- a/admin/nodes.py +++ b/admin/nodes.py @@ -4,7 +4,11 @@ from philo.models import Node, Redirect, File class NodeAdmin(TreeEntityAdmin): - pass + list_display = ('slug', 'view', 'accepts_subpath') + + def accepts_subpath(self, obj): + return obj.accepts_subpath + accepts_subpath.boolean = True class ViewAdmin(EntityAdmin):