From 9693b9e4185f5dfc658655aef0156f36453133ee Mon Sep 17 00:00:00 2001 From: Parker Berberian Date: Fri, 12 Apr 2019 12:24:34 -0400 Subject: Fixes the idf and pdf templates so that we can deploy opnfv Change-Id: I0091629f8f0af423210b2e81210d65239e9662b4 Signed-off-by: Parker Berberian --- src/resource_inventory/admin.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/resource_inventory/admin.py') diff --git a/src/resource_inventory/admin.py b/src/resource_inventory/admin.py index e063cc0..7ff510b 100644 --- a/src/resource_inventory/admin.py +++ b/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) -- cgit 1.2.3-korg