mirror of
				https://github.com/retspen/webvirtcloud
				synced 2025-07-31 12:41:08 +00:00 
			
		
		
		
	Resoved problem with app template
This commit is contained in:
		
							parent
							
								
									35da9ad193
								
							
						
					
					
						commit
						b4e8da8671
					
				
					 42 changed files with 37 additions and 32 deletions
				
			
		
							
								
								
									
										65
									
								
								create/templates/create_flav_block.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										65
									
								
								create/templates/create_flav_block.html
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,65 @@ | |||
| {% load i18n %} | ||||
| {% if request.user.is_superuser %} | ||||
|     <a href="#addFlavor" type="button" class="btn btn-success pull-right" data-toggle="modal"> | ||||
|         <span class="glyphicon glyphicon-plus" aria-hidden="true"></span> | ||||
|     </a> | ||||
| 
 | ||||
|     <!-- Modal Flavor --> | ||||
|     <div class="modal fade" id="addFlavor" tabindex="-1" role="dialog" aria-labelledby="addFlavorLabel" | ||||
|          aria-hidden="true"> | ||||
|         <div class="modal-dialog"> | ||||
|             <div class="modal-content"> | ||||
|                 <div class="modal-header"> | ||||
|                     <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | ||||
|                     <h4 class="modal-title">{% trans "Add New Flavor" %}</h4> | ||||
|                 </div> | ||||
|                 <div class="modal-body"> | ||||
|                     <form class="form-horizontal" method="post" role="form">{% csrf_token %} | ||||
|                         <div class="form-group"> | ||||
|                             <label class="col-sm-3 control-label">{% trans "Name" %}</label> | ||||
| 
 | ||||
|                             <div class="col-sm-6"> | ||||
|                                 <input type="text" name="label" class="form-control" placeholder="Micro" maxlength="20" | ||||
|                                        required pattern="[a-zA-Z0-9]+"> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                         <div class="form-group"> | ||||
|                             <label class="col-sm-3 control-label">{% trans "VCPU" %}</label> | ||||
| 
 | ||||
|                             <div class="col-sm-6"> | ||||
|                                 <input type="text" class="form-control" name="vcpu" value="1" maxlength="1" required | ||||
|                                        pattern="[0-9]"> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                         <div class="form-group"> | ||||
|                             <label class="col-sm-3 control-label">{% trans "RAM" %}</label> | ||||
| 
 | ||||
|                             <div class="col-sm-6"> | ||||
|                                 <input type="text" class="form-control" name="memory" value="512" maxlength="5" required | ||||
|                                        pattern="[0-9]+"> | ||||
|                             </div> | ||||
|                             <label class="col-sm-1 control-label">{% trans "MB" %}</label> | ||||
|                         </div> | ||||
|                         <div class="form-group"> | ||||
|                             <label class="col-sm-3 control-label">{% trans "HDD" %}</label> | ||||
| 
 | ||||
|                             <div class="col-sm-6"> | ||||
|                                 <input type="text" class="form-control" name="disk" value="10" maxlength="3" required | ||||
|                                        pattern="[0-9]+"> | ||||
|                             </div> | ||||
|                             <label class="col-sm-1 control-label">{% trans "GB" %}</label> | ||||
|                         </div> | ||||
|                 </div> | ||||
|                 <div class="modal-footer"> | ||||
|                     <button type="button" class="btn btn-default" data-dismiss="modal"> | ||||
|                         {% trans "Close" %} | ||||
|                     </button> | ||||
|                     <button type="submit" class="btn btn-primary" name="create_flavor"> | ||||
|                         {% trans "Add" %} | ||||
|                     </button> | ||||
|                 </div> | ||||
|                     </form> | ||||
|             </div> <!-- /.modal-content --> | ||||
|         </div> <!-- /.modal-dialog --> | ||||
|     </div> <!-- /.modal --> | ||||
| {% endif %} | ||||
							
								
								
									
										418
									
								
								create/templates/create_instance.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										418
									
								
								create/templates/create_instance.html
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,418 @@ | |||
| {% extends "base.html" %} | ||||
| {% load i18n %} | ||||
| {% load static %} | ||||
| {% block title %}{% trans "Create new instance" %}{% endblock %} | ||||
| {% block style %} | ||||
|     <link href="{% static "css/bootstrap-multiselect.css" %}" rel="stylesheet"> | ||||
| {% endblock %} | ||||
| {% block content %} | ||||
|             <!-- Page Heading --> | ||||
|             <div class="row"> | ||||
|                 <div class="col-lg-12"> | ||||
|                     {% include 'create_flav_block.html' %} | ||||
|                     <h1 class="page-header">{% trans "New instance on" %} {{ compute.name }}</h1> | ||||
|                 </div> | ||||
|             </div> | ||||
|             <!-- /.row --> | ||||
| 
 | ||||
|             {% include 'errors_block.html' %} | ||||
| 
 | ||||
|             <div class="row"> | ||||
|                 <div class="col-lg-12"> | ||||
|                     <p> | ||||
|                         <a class="btn btn-success" data-toggle="collapse" href="#addCustom" aria-expanded="false" aria-controls="addCustom"> | ||||
|                             {% trans "Custom" %} | ||||
|                         </a> | ||||
|                         <a class="btn btn-success" data-toggle="collapse" href="#addFromTemp" aria-expanded="false" aria-controls="addFromTemp"> | ||||
|                             {% trans "Template" %} | ||||
|                         </a> | ||||
|                          <a class="btn btn-success" data-toggle="collapse" href="#addFromXML" aria-expanded="false" aria-controls="addFromXML"> | ||||
|                             {% trans "XML" %} | ||||
|                         </a> | ||||
|                     </p> | ||||
|                     <div class="collapse" id="addCustom"> | ||||
|                         <div class="well"> | ||||
|                             <form class="form-horizontal" method="post" role="form">{% csrf_token %} | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="col-sm-3 control-label">{% trans "Name" %}</label> | ||||
|                                 <div class="col-sm-6"> | ||||
|                                     <input type="text" class="form-control" name="name" placeholder="{% trans "Name" %}" maxlength="14" required pattern="[a-zA-Z0-9\.\-_]+"> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="col-sm-3 control-label">{% trans "VCPU" %}</label> | ||||
|                                 <div class="col-sm-6"> | ||||
|                                     <input type="text" class="form-control" name="vcpu" value="1" maxlength="1" required pattern="[0-9]"> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="col-sm-3 control-label">{% trans "Host-Model" %}</label> | ||||
|                                 <div class="col-sm-6"> | ||||
|                                     <input type="checkbox" name="host_model" value="true" checked> | ||||
|                                 </div> | ||||
|                                 <label class="col-sm-1 control-label">{% trans "CPU" %}</label> | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="col-sm-3 control-label">{% trans "RAM" %}</label> | ||||
|                                 <div class="col-sm-6"> | ||||
|                                     <input type="text" class="form-control" name="memory" value="512" maxlength="5" required pattern="[0-9]+"> | ||||
|                                 </div> | ||||
|                                 <label class="col-sm-1 control-label">{% trans "MB" %}</label> | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="col-sm-3 control-label">{% trans "HDD" %}</label> | ||||
|                                 <div class="col-sm-6"> | ||||
|                                     <ul id="img-list"> | ||||
|                                         <!-- populated from javascript --> | ||||
|                                     </ul> | ||||
|                                     <input id="images" name="images" type="hidden" value=""/> | ||||
|                                     <select id="image-control" name="image-control" class="form-control" multiple="multiple"> | ||||
|                                         {% if get_images %} | ||||
|                                             {% for name in get_images %} | ||||
|                                                 <option value="{{ name }}">{{ name }}</option> | ||||
|                                             {% endfor %} | ||||
|                                         {% else %} | ||||
|                                             <option value="">{% trans "None" %}</option> | ||||
|                                         {% endif %} | ||||
|                                     </select> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="col-sm-3 control-label">{% trans "Network" %}</label> | ||||
|                                 <div class="col-sm-6"> | ||||
|                                     <ul id="net-list"> | ||||
|                                         <!-- populated from javascript --> | ||||
|                                     </ul> | ||||
|                                     <input id="networks" type="hidden" name="networks" value=""/> | ||||
|                                     <select id="network-control" name="network-control" class="form-control" multiple="multiple"> | ||||
|                                         {% for network in networks %} | ||||
|                                             <option value="{{ network }}">{{ network }}</option> | ||||
|                                         {% endfor %} | ||||
|                                     </select> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                             <div class="form-group"> | ||||
|                                 <label class="col-sm-3 control-label">{% trans "VirtIO" %}</label> | ||||
|                                 <div class="col-sm-6"> | ||||
|                                     <input type="checkbox" name="virtio" value="true" checked> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                             {% if storages %} | ||||
|                                 <button type="submit" class="btn btn-primary" name="create" value="1"> | ||||
|                                     {% trans "Create" %} | ||||
|                                 </button> | ||||
|                             {% else %} | ||||
|                                 <button class="btn btn-primary disabled"> | ||||
|                                     {% trans "Create" %} | ||||
|                                 </button> | ||||
|                             {% endif %} | ||||
|                         </form> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="collapse" id="addFromTemp"> | ||||
|                         <div class="well"> | ||||
|                             <form class="form-horizontal" method="post" role="form">{% csrf_token %} | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "Name" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <input type="text" class="form-control" name="name" placeholder="{% trans "Name" %}" maxlength="14" required pattern="[a-zA-Z0-9\.\-_]+"> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "VCPU" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <input type="text" class="form-control" name="vcpu" value="1" maxlength="1" required pattern="[0-9]"> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "Host-Model" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <input type="checkbox" name="host_model" value="true" checked> | ||||
|                                     </div> | ||||
|                                     <label class="col-sm-1 control-label">{% trans "CPU" %}</label> | ||||
|                                 </div> | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "RAM" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <input type="text" class="form-control" name="memory" value="512" maxlength="5" required pattern="[0-9]+"> | ||||
|                                     </div> | ||||
|                                     <label class="col-sm-1 control-label">{% trans "MB" %}</label> | ||||
|                                 </div> | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "HDD" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <select name="template" class="form-control"> | ||||
|                                             {% if get_images %} | ||||
|                                                 {% for name in get_images %} | ||||
|                                                     <option value="{{ name }}">{{ name }}</option> | ||||
|                                                 {% endfor %} | ||||
|                                             {% else %} | ||||
|                                                 <option value="">{% trans "None" %}</option> | ||||
|                                             {% endif %} | ||||
|                                         </select> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                                 <div class="form-group meta-prealloc"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "Metadata" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <input type="checkbox" name="meta_prealloc" title="Metadata preallocation" value="true"> | ||||
|                                     </div> | ||||
|                                     <label class="col-lg-1 control-label">{% trans "Image" %}</label> | ||||
|                                 </div> | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "Network" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <select name="networks" class="form-control"> | ||||
|                                             {% for network in networks %} | ||||
|                                                 <option value="{{ network }}">{{ network }}</option> | ||||
|                                             {% endfor %} | ||||
|                                         </select> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                                 <div class="form-group"> | ||||
|                                     <label class="col-sm-3 control-label">{% trans "VirtIO" %}</label> | ||||
|                                     <div class="col-sm-6"> | ||||
|                                         <input type="checkbox" name="virtio" value="true" checked> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                                 {% if storages %} | ||||
|                                     <button type="submit" class="btn btn-primary" name="create" value="1"> | ||||
|                                         {% trans "Create" %} | ||||
|                                     </button> | ||||
|                                 {% else %} | ||||
|                                     <button class="btn btn-primary disabled"> | ||||
|                                         {% trans "Create" %} | ||||
|                                     </button> | ||||
|                                 {% endif %} | ||||
|                             </form> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="collapse" id="addFromXML"> | ||||
|                         <div class="well"> | ||||
|                             <form class="form-horizontal" method="post" role="form">{% csrf_token %} | ||||
|                                 <div class="col-sm-12" id="xmlheight"> | ||||
|                                     <textarea id="editor" name="from_xml"></textarea> | ||||
|                                 </div> | ||||
|                                 <button type="submit" class="btn btn-primary" name="create_xml"> | ||||
|                                     {% trans "Create" %} | ||||
|                                 </button> | ||||
|                             </form> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
| 
 | ||||
|             <div class="row"> | ||||
|                 {% if not flavors %} | ||||
|                     <div class="col-lg-12"> | ||||
|                         <div class="alert alert-warning alert-dismissable"> | ||||
|                             <button type="button" class="close" data-dismiss="alert" aria-hidden="true">×</button> | ||||
|                             <i class="fa fa-exclamation-triangle"></i> <strong>{% trans "Warning:" %}</strong> {% trans "Hypervisor doesn't have any Flavors" %} | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 {% else %} | ||||
|                     <div class="col-lg-12"> | ||||
|                         <h3 class="page-header">{% trans "Create from flover" %}</h3> | ||||
|                         <div class="table-responsive"> | ||||
|                             <table class="table table-bordered table-hover"> | ||||
|                             <thead> | ||||
|                             <tr> | ||||
|                                 <th>#</th> | ||||
|                                 <th>{% trans "Name" %}</th> | ||||
|                                 <th>{% trans "VCPU's" %}</th> | ||||
|                                 <th>{% trans "RAM" %}</th> | ||||
|                                 <th>{% trans "HDD" %}</th> | ||||
|                                 <th colspan="2">{% trans "Action" %}</th> | ||||
|                             </tr> | ||||
|                             </thead> | ||||
|                             <tbody> | ||||
|                             {% for flavor in flavors %} | ||||
|                                 <tr> | ||||
|                                     <td>{{ forloop.counter }}</td> | ||||
|                                     <td>{{ flavor.label }}</td> | ||||
|                                     <td>{{ flavor.vcpu }}</td> | ||||
|                                     <td>{{ flavor.memory }} {% trans "MB" %}</td> | ||||
|                                     <td>{{ flavor.disk }} {% trans "GB" %}</td> | ||||
|                                     <td style="width:5px;"> | ||||
|                                         <div class="modal fade" id="addVMflavor{{ forloop.counter }}" tabindex="-1" role="dialog" aria-labelledby="addVMFlavorLabel" aria-hidden="true"> | ||||
|                                             <div class="modal-dialog"> | ||||
|                                                 <div class="modal-content"> | ||||
|                                                     <div class="modal-header"> | ||||
|                                                         <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> | ||||
|                                                         <h4 class="modal-title">{% trans "Create Virtual Machine" %} ({{ flavor.label }})</h4> | ||||
|                                                     </div> | ||||
|                                                     <div class="modal-body"> | ||||
|                                                         <form class="form-horizontal" method="post" role="form">{% csrf_token %} | ||||
|                                                             <div class="form-group"> | ||||
|                                                                 <label class="col-sm-3 control-label">{% trans "Name" %}</label> | ||||
|                                                                 <div class="col-sm-6"> | ||||
|                                                                     <input type="text" class="form-control" name="name" | ||||
|                                                                            placeholder="{% trans "Name" %}" maxlength="14" required | ||||
|                                                                            pattern="[a-zA-Z0-9\.\-_]+"> | ||||
|                                                                     <input type="hidden" name="vcpu" value="{{ flavor.vcpu }}"> | ||||
|                                                                     <input type="hidden" name="memory" value="{{ flavor.memory }}"> | ||||
|                                                                     <input type="hidden" name="hdd_size" value="{{ flavor.disk }}"> | ||||
|                                                                 </div> | ||||
|                                                             </div> | ||||
|                                                             <div class="form-group"> | ||||
|                                                                 <label class="col-sm-3 control-label">{% trans "Storage" %}</label> | ||||
| 
 | ||||
|                                                                 <div class="col-sm-6"> | ||||
|                                                                     <select name="storage" class="form-control"> | ||||
|                                                                         {% if storages %} | ||||
|                                                                             {% for storage in storages %} | ||||
|                                                                                 <option value="{{ storage }}">{{ storage }}</option> | ||||
|                                                                             {% endfor %} | ||||
|                                                                         {% else %} | ||||
|                                                                             <option value="">{% trans "None" %}</option> | ||||
|                                                                         {% endif %} | ||||
|                                                                     </select> | ||||
|                                                                 </div> | ||||
|                                                             </div> | ||||
|                                                             <div class="form-group meta-prealloc"> | ||||
|                                                                 <label class="col-sm-3 control-label">{% trans "Metadata" %}</label> | ||||
|                                                                 <div class="col-sm-6"> | ||||
|                                                                     <input type="checkbox" name="meta_prealloc" title="Metadata preallocation" value="true"> | ||||
|                                                                 </div> | ||||
|                                                                 <label class="col-lg-1 control-label">{% trans "Image" %}</label> | ||||
|                                                             </div> | ||||
|                                                             <div class="form-group"> | ||||
|                                                                 <label class="col-sm-3 control-label">{% trans "Network" %}</label> | ||||
|                                                                 <div class="col-sm-6"> | ||||
|                                                                     <select name="networks" class="form-control"> | ||||
|                                                                         {% for network in networks %} | ||||
|                                                                             <option value="{{ network }}">{{ network }}</option> | ||||
|                                                                         {% endfor %} | ||||
|                                                                     </select> | ||||
|                                                                 </div> | ||||
|                                                             </div> | ||||
|                                                             <div class="form-group"> | ||||
|                                                                 <label class="col-sm-3 control-label">{% trans "MAC" %}</label> | ||||
|                                                                 <div class="col-sm-6"> | ||||
|                                                                     <input type="text" class="form-control" name="mac" maxlength="17" value="{{ mac_auto }}" required pattern="[a-zA-Z0-9:]+"> | ||||
|                                                                 </div> | ||||
|                                                             </div> | ||||
|                                                             <div class="form-group"> | ||||
|                                                                 <label class="col-sm-3 control-label">{% trans "Host-Model" %}</label> | ||||
|                                                                 <div class="col-sm-6"> | ||||
|                                                                     <input type="checkbox" name="host_model" value="true" checked> | ||||
|                                                                 </div> | ||||
|                                                                 <label class="col-lg-1 control-label">{% trans "CPU" %}</label> | ||||
|                                                             </div> | ||||
|                                                             <div class="form-group"> | ||||
|                                                                 <label class="col-sm-3 control-label">{% trans "VirtIO" %}</label> | ||||
|                                                                 <div class="col-sm-6"> | ||||
|                                                                     <input type="checkbox" name="virtio" value="true" checked> | ||||
|                                                                 </div> | ||||
|                                                             </div> | ||||
|                                                     </div> | ||||
|                                                     <div class="modal-footer"> | ||||
|                                                         <button type="button" class="btn btn-default" data-dismiss="modal">{% trans "Close" %}</button> | ||||
|                                                         {% if storages %} | ||||
|                                                             <button type="submit" class="btn btn-primary" name="create">{% trans "Create" %}</button> | ||||
|                                                         {% else %} | ||||
|                                                             <button class="btn btn-primary disabled">{% trans "Create" %}</button> | ||||
|                                                         {% endif %} | ||||
|                                                     </div> | ||||
|                                                         </form> | ||||
|                                                 </div> | ||||
|                                             </div> | ||||
|                                         </div> | ||||
|                                         <a data-toggle="modal" href="#addVMflavor{{ forloop.counter }}" class="btn btn-sm btn-default"> | ||||
|                                             <span class="glyphicon glyphicon-plus"></span> | ||||
|                                         </a> | ||||
|                                     </td> | ||||
|                                     <td style="width:5px;"> | ||||
|                                         <form class="form-horizontal" action="" method="post" role="form">{% csrf_token %} | ||||
|                                             <input type="hidden" name="flavor" value="{{ flavor.id }}"> | ||||
|                                             <button type="submit" class="btn btn-sm btn-default" name="delete_flavor" onclick="return confirm('{% trans "Are you sure?" %}')"> | ||||
|                                                 <span class="glyphicon glyphicon-trash"></span> | ||||
|                                             </button> | ||||
|                                         </form> | ||||
|                                     </td> | ||||
|                                 </tr> | ||||
|                             {% endfor %} | ||||
|                             </tbody> | ||||
|                         </table> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 {% endif %} | ||||
|             </div> | ||||
| {% endblock %} | ||||
| {% block script %} | ||||
| <script src="{% static "js/bootstrap-multiselect.js" %}"></script> | ||||
| <script> | ||||
|     function toggleValue(string, updated_value, checked) { | ||||
|         var result = ''; | ||||
|         if (checked) { | ||||
|             result = string; | ||||
|             if (result != '') result += ','; | ||||
|             result += updated_value; | ||||
|         } else { | ||||
|             $.each(string.split(','), function (index, value) { | ||||
|                 if (value == updated_value) return; | ||||
|                 if (result != '') result += ','; | ||||
|                 result += value; | ||||
|             }); | ||||
|         } | ||||
|         return result; | ||||
|     } | ||||
| 
 | ||||
|     $(document).ready(function () { | ||||
|         $('#image-control').multiselect({ | ||||
|             buttonText: function (options, select) { | ||||
|                 return 'Add image <b class="caret"></b>'; | ||||
|             }, | ||||
|             buttonTitle: function (options, select) { | ||||
|                 return ''; | ||||
|             }, | ||||
|             onChange: function (element, checked) { | ||||
|                 var input_value = toggleValue($('#images').val(), element.val(), checked); | ||||
|                 $('#images').val(input_value); | ||||
|                 var selected_list_html = ''; | ||||
|                 var counter = 0; | ||||
|                 if (input_value != '') { | ||||
|                     $.each(input_value.split(','), function (index, value) { | ||||
|                         var li = '<li>hdd' + counter + | ||||
|                                 ' -> ' + value + ' ' + | ||||
|                                 '<a class="btn-link" onclick="javascript:$(\'#image-control\').multiselect(\'deselect\', \'' + value + '\')">x</a></li>'; | ||||
|                         selected_list_html += li; | ||||
|                         counter++; | ||||
|                     }); | ||||
|                 } | ||||
|                 $('#img-list').html(selected_list_html); | ||||
|             } | ||||
|         }); | ||||
| 
 | ||||
|         $('#network-control').multiselect({ | ||||
|             buttonText: function (options, select) { | ||||
|                 return 'Add network <b class="caret"></b>'; | ||||
|             }, | ||||
|             buttonTitle: function (options, select) { | ||||
|                 return ''; | ||||
|             }, | ||||
|             onChange: function (element, checked) { | ||||
|                 var input_value = toggleValue($('#networks').val(), element.val(), checked); | ||||
|                 $('#networks').val(input_value); | ||||
|                 var selected_list_html = ''; | ||||
|                 var counter = 0; | ||||
|                 if (input_value != '') { | ||||
|                     $.each(input_value.split(','), function (index, value) { | ||||
|                         var li = '<li>eth' + counter + | ||||
|                                 ' -> ' + value + ' ' + | ||||
|                                 '<a class="btn-link" onclick="javascript:$(\'#network-control\').multiselect(\'deselect\', \'' + value + '\')">x</a></li>'; | ||||
|                         selected_list_html += li; | ||||
|                         counter++; | ||||
|                     }); | ||||
|                 } | ||||
|                 $('#net-list').html(selected_list_html); | ||||
|             } | ||||
|         }); | ||||
|     }); | ||||
| </script> | ||||
| <script src="{{ STATIC_URL }}/js/ace.js" type="text/javascript" charset="utf-8"></script> | ||||
| <script> | ||||
|     var editor = ace.edit("editor"); | ||||
|     editor.getSession().setMode("ace/mode/xml"); | ||||
| </script> | ||||
| {% endblock %} | ||||
|  | @ -137,4 +137,4 @@ def create_instance(request, compute_id): | |||
|                                 error_messages.append(lib_err) | ||||
|         conn.close() | ||||
| 
 | ||||
|     return render(request, 'create/create_instance.html', locals()) | ||||
|     return render(request, 'create_instance.html', locals()) | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue