From: Scott Baker Date: Mon, 9 Jun 2014 18:01:16 +0000 (-0700) Subject: fix unable to add nodes from deployment admin X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=838d7dfe281b5300f7d53878c36291edb0ace1a5;p=plstackapi.git fix unable to add nodes from deployment admin --- diff --git a/planetstack/core/admin.py b/planetstack/core/admin.py index bc1bb0d..6fe9095 100644 --- a/planetstack/core/admin.py +++ b/planetstack/core/admin.py @@ -319,13 +319,13 @@ class NodeROInline(ReadOnlyTabularInline): model = Node extra = 0 suit_classes = 'suit-tab suit-tab-nodes' - fields = ['name','deployment'] + fields = ['name','deployment','site'] class NodeInline(PlStackTabularInline): model = Node extra = 0 suit_classes = 'suit-tab suit-tab-nodes' - fields = ['name','deployment'] + fields = ['name','deployment','site'] class DeploymentPrivilegeROInline(ReadOnlyTabularInline): model = DeploymentPrivilege