1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-30 22:50:10 +03:00

Feature #4363: Remove old provision header.hbs

This commit is contained in:
Daniel Molina 2016-04-13 12:15:13 +02:00
parent 9c8d5e89bd
commit 18f6ad0b3a
2 changed files with 0 additions and 43 deletions

View File

@ -46,8 +46,6 @@ define(function(require) {
// Templates
var TemplateContent = require('hbs!./provision-tab/content');
var TemplateHeader = require('hbs!./provision-tab/header');
var TemplateDashboardQuotas = require('hbs!./provision-tab/dashboard/quotas');
var TemplateDashboardVdcQuotas = require('hbs!./provision-tab/dashboard/vdc-quotas');
var TemplateDashboardVms = require('hbs!./provision-tab/dashboard/vms');
@ -677,8 +675,6 @@ define(function(require) {
var tab = $("#"+tab_name);
if (Config.isTabEnabled(tab_name)) {
//$('.right-header').prepend(TemplateHeader());
$(".right-content").addClass("large-centered small-centered");
$("#footer").removeClass("right");
$("#footer").addClass("large-centered small-centered");

View File

@ -1,39 +0,0 @@
{{! -------------------------------------------------------------------------- }}
{{! Copyright 2002-2015, OpenNebula Project, OpenNebula Systems }}
{{! }}
{{! Licensed under the Apache License, Version 2.0 (the "License"); you may }}
{{! not use this file except in compliance with the License. You may obtain }}
{{! a copy of the License at }}
{{! }}
{{! http://www.apache.org/licenses/LICENSE-2.0 }}
{{! }}
{{! Unless required by applicable law or agreed to in writing, software }}
{{! distributed under the License is distributed on an "AS IS" BASIS, }}
{{! WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. }}
{{! See the License for the specific language governing permissions and }}
{{! limitations under the License. }}
{{! -------------------------------------------------------------------------- }}
<div class="row">
<div class="large-12 columns">
<ul class="menu icon-top provision-header text-center">
<li>
<a href"#" class="provision_vms_list_button" id=""> <i class="fa fa-fw fa-lg fa-th"/>{{tr "VMs"}}
</a>
</li>
{{#isProvisionTabEnabled "provision-tab" "templates"}}
<li>
<a href"#" class="provision_templates_list_button"> <i class="fa fa-fw fa-lg fa-save"/>{{tr "Templates"}}
</a>
</li>
{{/isProvisionTabEnabled}}
{{#isProvisionTabEnabled "provision-tab" "flows"}}
<li>
<a href"#" class="provision_flows_list_button" id="">
<i class="fa fa-lg fa-fw fa-cubes"/>
{{tr "Services"}}
</a>
</li>
{{/isProvisionTabEnabled}}
</ul>
</div>
</div>