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

Remove unused file

This commit is contained in:
Carlos Martín 2016-04-29 13:50:09 +02:00
parent 9451e6de39
commit b9e52f0236

View File

@ -1,59 +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. }}
{{! -------------------------------------------------------------------------- }}
<form data-abide="ajax" id="{{formPanelId}}Wizard" class="custom creation">
<fieldset>
<legend>{{tr "Step 1: Specify a name and the number of instances"}}</legend>
<div class="row">
<div class="large-5 columns">
<label for="create_vm_name">
{{tr "VM Name"}}
<span class="tip">
{{tr "Defaults to template name when emtpy. You can use the wildcard %i. When creating several VMs, %i will be replaced with a different number starting from 0 in each of them"}}.
</span>
</label>
<input type="text" name="create_vm_name" id="create_vm_name" />
</div>
<div class="large-4 columns">
<label for="create_vm_n_times">
{{tr "Number of instances"}}:
<span class="tip">
{{tr "Number of Virtual Machines that will be created using this template"}}.
</span>
</label>
<input type="text" name="create_vm_n_times" id="create_vm_n_times" value="1"></div>
<div class="large-3 columns">
<input type="checkbox" name="create_vm_hold" id="create_vm_hold"/>
<label for="create_vm_hold">
{{tr "Hold"}}
<span class="tip">
{{tr "Sets the new VM to hold state, instead of pending. The scheduler will not deploy VMs in this state. It can be released later, or deployed manually."}}
</span>
</label>
</div>
</div>
</fieldset>
<fieldset>
<legend>{{tr "Step 2: Select a template"}}</legend>
{{{templatesTableHTML}}}
</fieldset>
<div id="create_vm_inputs_step">
<fieldset>
<legend>{{tr "Step 3: Fill the required inputs"}}</legend>
<div id="create_vm_user_inputs"></div>
</fieldset>
</div>
</form>