diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-04-12 12:24:34 -0400 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-04-17 10:18:45 -0400 |
commit | 9693b9e4185f5dfc658655aef0156f36453133ee (patch) | |
tree | baabbd8820ea2e62b3d667cbe238f64d31fcbe82 /src/resource_inventory/admin.py | |
parent | d8e9f0e33648426a95ae50bf27fa089036f6a1fd (diff) |
Fixes the idf and pdf templates so that we can deploy opnfv
Change-Id: I0091629f8f0af423210b2e81210d65239e9662b4
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/resource_inventory/admin.py')
-rw-r--r-- | src/resource_inventory/admin.py | 5 |
1 files changed, 3 insertions, 2 deletions
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) |