diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-04-17 14:32:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@opnfv.org> | 2019-04-17 14:32:03 +0000 |
commit | fec940b7b8d15099b8f914ce35552c59db9eb77b (patch) | |
tree | d65e8f7d67957719c84400e9cbbc0007ce215e20 /src/resource_inventory/admin.py | |
parent | 01ef094c8248d9dfd2807142ea8e78da71413c8b (diff) | |
parent | 9693b9e4185f5dfc658655aef0156f36453133ee (diff) |
Merge "Fixes the idf and pdf templates so that we can deploy opnfv"
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) |