diff -r a946477e6a46 -r 1c1b527dcee1 components/openstack/horizon/files/overrides.py --- a/components/openstack/horizon/files/overrides.py Tue Sep 02 07:50:56 2014 -0700 +++ b/components/openstack/horizon/files/overrides.py Tue Sep 02 13:23:57 2014 -0700 @@ -54,8 +54,6 @@ NetworksTable as projectNetworksTable from openstack_dashboard.dashboards.project.networks.workflows import \ CreateNetworkInfoAction, CreateSubnetDetailAction, CreateSubnetInfoAction -from openstack_dashboard.dashboards.project.stacks.tabs import \ - StackDetailTabs, StackEventsTab, StackOverviewTab, StackResourcesTab # Remove 'PostCreationStep' from Project/Instances/Launch Instance create_instance.LaunchInstance.default_steps = ( @@ -146,11 +144,7 @@ # Project/Images & Snapshots/Actions ImagesTable._meta.row_actions = (LaunchImage, EditImage, DeleteImage,) -# Change 'allocation_pools' and 'host_routes' fields to read-only in +# Change 'host_routes' field to read-only in # Project/Networks/Create Network/Subnet Detail base_fields = CreateSubnetDetailAction.base_fields -base_fields['allocation_pools'].widget.attrs['readonly'] = 'readonly' base_fields['host_routes'].widget.attrs['readonly'] = 'readonly' - -# Remove 'StackTopologyTab' from Project/Stacks/StackDetailTabs -StackDetailTabs.tabs = (StackOverviewTab, StackResourcesTab, StackEventsTab)