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 an abstract TargetURLModel to handle issues related to targeting a node, a...
[philo.git]
/
admin
/
nodes.py
diff --git
a/admin/nodes.py
b/admin/nodes.py
index
a576d44
..
dc5ca60
100644
(file)
--- a/
admin/nodes.py
+++ b/
admin/nodes.py
@@
-1,5
+1,5
@@
from django.contrib import admin
from django.contrib import admin
-from philo.admin.base import EntityAdmin, TreeEntityAdmin
+from philo.admin.base import EntityAdmin, TreeEntityAdmin
, COLLAPSE_CLASSES
from philo.models import Node, Redirect, File
from philo.models import Node, Redirect, File
@@
-18,11
+18,19
@@
class ViewAdmin(EntityAdmin):
class RedirectAdmin(ViewAdmin):
fieldsets = (
(None, {
class RedirectAdmin(ViewAdmin):
fieldsets = (
(None, {
- 'fields': ('target', 'status_code')
+ 'fields': ('target
_node', 'url_or_subpath
', 'status_code')
}),
}),
+ ('Advanced', {
+ 'fields': ('reversing_parameters',),
+ 'classes': COLLAPSE_CLASSES
+ })
)
)
- list_display = ('target
', 'status_code
')
+ list_display = ('target
_url', 'status_code', 'target_node', 'url_or_subpath
')
list_filter = ('status_code',)
list_filter = ('status_code',)
+ raw_id_fields = ['target_node']
+ related_field_lookups = {
+ 'fk': ['target_node']
+ }
class FileAdmin(ViewAdmin):
class FileAdmin(ViewAdmin):