summaryrefslogtreecommitdiffstats
path: root/dashboard/src/resource_inventory/admin.py
diff options
context:
space:
mode:
authorParker Berberian <pberberian@iol.unh.edu>2019-04-17 14:32:03 +0000
committerGerrit Code Review <gerrit@opnfv.org>2019-04-17 14:32:03 +0000
commitd26781393ba3827b698e89573ace06ace4240f95 (patch)
tree2830b36b0557fdffa614ae8a4552a8539a779e4e /dashboard/src/resource_inventory/admin.py
parent493d0e98ec85e6e91503fdd1b51c918bf74708e0 (diff)
parent1aad8a8ad965b9a20224b2ae094ce776c992a601 (diff)
Merge "Fixes the idf and pdf templates so that we can deploy opnfv"
Diffstat (limited to 'dashboard/src/resource_inventory/admin.py')
-rw-r--r--dashboard/src/resource_inventory/admin.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/dashboard/src/resource_inventory/admin.py b/dashboard/src/resource_inventory/admin.py
index e063cc0..7ff510b 100644
--- a/dashboard/src/resource_inventory/admin.py
+++ b/dashboard/src/resource_inventory/admin.py
@@ -32,7 +32,8 @@ from resource_inventory.models import (
OPNFVConfig,
OPNFVRole,
Image,
- HostConfiguration
+ HostConfiguration,
+ RemoteInfo
)
profiles = [HostProfile, InterfaceProfile, DiskProfile, CpuProfile, RamProfile]
@@ -47,6 +48,6 @@ physical = [Host, Interface, Network, Vlan, ResourceBundle]
admin.site.register(physical)
-config = [Scenario, Installer, Opsys, ConfigBundle, OPNFVConfig, OPNFVRole, Image, HostConfiguration]
+config = [Scenario, Installer, Opsys, ConfigBundle, OPNFVConfig, OPNFVRole, Image, HostConfiguration, RemoteInfo]
admin.site.register(config)