2018-10-19 13:11:22 +00:00
|
|
|
{% load i18n %}
|
2018-10-19 13:14:33 +00:00
|
|
|
{% if request.user.is_superuser %}
|
2018-10-19 13:11:22 +00:00
|
|
|
<a href="#addvol" type="button" class="btn btn-success pull-right" data-toggle="modal">
|
|
|
|
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
|
|
|
|
</a>
|
|
|
|
|
|
|
|
<!-- Modal pool -->
|
|
|
|
<div class="modal fade" id="addvol" tabindex="-1" role="dialog" aria-labelledby="addInstanceVolumeLabel" 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 Instance Volume" %}</h4>
|
|
|
|
</div>
|
2018-10-24 09:04:05 +00:00
|
|
|
<div class="modal-body">
|
|
|
|
<div class="row">
|
|
|
|
<ul class="nav nav-tabs">
|
|
|
|
<li role="presentation" class="active"><a href="#NewDisk" data-toggle="tab">{% trans 'New Disk' %}</a></li>
|
|
|
|
<li role="presentation"><a href="#ExistingDisk" data-toggle="tab">{% trans 'Existing Disk' %}</a></li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
<div class="tab-content">
|
|
|
|
<div class="tab-pane active" id="NewDisk">
|
|
|
|
<form class="form-horizontal" method="post" role="form">{% csrf_token %}
|
|
|
|
|
|
|
|
<p style="font-weight:bold;">{% trans "Volume parameters" %}</p>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Storage" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<select name="storage" class="form-control image-format">
|
|
|
|
{% for storage in storages %}
|
|
|
|
<option value="{{ storage }}">{{ storage }}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Name" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<input type="text" class="form-control" name="name" placeholder="{% trans "Name" %}" required pattern="[a-zA-Z0-9\.\-_]+">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Format" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<select name="format" class="form-control image-format">
|
|
|
|
{% for format in formats %}
|
|
|
|
<option value="{{ format }}" {% if format == default_format %}selected{% endif %}>{% trans format %}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Size" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<input type="text" class="form-control" name="size" value="10" maxlength="3" required pattern="[0-9]+">
|
|
|
|
</div>
|
|
|
|
<label class="col-sm-1 control-label">{% trans "GB" %}</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Bus" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<select name="bus" class="form-control image-format">
|
|
|
|
{% for bus in busses %}
|
|
|
|
<option value="{{ bus }}" {% if bus == default_bus %}selected{% endif %}>{% trans bus %}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Cache" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<select name="cache" class="form-control image-format">
|
|
|
|
{% for mode, name in cache_modes %}
|
|
|
|
<option value="{{ mode }}" {% if mode == default_cache %}selected{% endif %}>{% trans name %}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group meta-prealloc">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Metadata" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<input type="checkbox" name="meta_prealloc" value="true">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
{% ifequal status 5 %}
|
|
|
|
<button type="submit" class="btn btn-lg btn-success pull-right" name="addnewvol">{% trans "Add Volume" %}</button>
|
|
|
|
{% else %}
|
|
|
|
<button class="btn btn-lg btn-success pull-right disabled">{% trans "Add Volume" %}</button>
|
|
|
|
{% endifequal %}
|
|
|
|
</div>
|
|
|
|
</form>
|
2018-10-19 13:11:22 +00:00
|
|
|
</div>
|
2018-10-24 09:04:05 +00:00
|
|
|
<div class="tab-pane" id="ExistingDisk">
|
|
|
|
<form class="form-horizontal" method="post" role="form">{% csrf_token %}
|
|
|
|
<div class="modal-body">
|
|
|
|
<p style="font-weight:bold;">{% trans "Volume parameters" %}</p>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Storage" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<div class="dropdown">
|
2018-10-26 14:30:52 +00:00
|
|
|
<button id="select_storage" class="btn btn-default dropdown-toggle form-control" type="button" data-toggle="dropdown">{% trans 'Select Pool...' %}
|
2018-10-24 09:04:05 +00:00
|
|
|
<span class="caret"></span></button>
|
|
|
|
<ul class="dropdown-menu">
|
|
|
|
{% for storage in storages %}
|
|
|
|
<li><a href="#" onclick="get_volumes({{ compute_id }}, '{{ storage }}')">{{ storage }}</a></li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2018-10-25 06:57:41 +00:00
|
|
|
<input id="selected_storage" name="selected_storage" hidden/>
|
2018-10-24 09:04:05 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Volume" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<select id="vols" name="vols" class="form-control" disabled>
|
|
|
|
<option value="" selected>{% trans 'None' %}</option>
|
|
|
|
<!-- populate with javascript -->
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Bus" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<select name="bus" class="form-control image-format">
|
|
|
|
{% for bus in busses %}
|
|
|
|
<option value="{{ bus }}" {% if bus == default_bus %}selected{% endif %}>{% trans bus %}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label class="col-sm-3 control-label" style="font-weight:normal;">{% trans "Cache" %}</label>
|
|
|
|
<div class="col-sm-4">
|
|
|
|
<select name="cache" class="form-control image-format">
|
|
|
|
{% for mode, name in cache_modes %}
|
|
|
|
<option value="{{ mode }}" {% if mode == default_cache %}selected{% endif %}>{% trans name %}</option>
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
{% ifequal status 5 %}
|
|
|
|
<button type="submit" class="btn btn-lg btn-success pull-right" name="addexistingvol">{% trans "Add Volume" %}</button>
|
|
|
|
{% else %}
|
|
|
|
<button class="btn btn-lg btn-success pull-right disabled">{% trans "Add Volume" %}</button>
|
|
|
|
{% endifequal %}
|
|
|
|
</div>
|
|
|
|
</form>
|
2018-10-19 13:11:22 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2018-10-24 09:04:05 +00:00
|
|
|
</div> <!-- row -->
|
|
|
|
</div> <!-- /.modal-body -->
|
2018-10-19 13:11:22 +00:00
|
|
|
</div> <!-- /.modal-content -->
|
|
|
|
</div> <!-- /.modal-dialog -->
|
|
|
|
</div> <!-- /.modal -->
|
|
|
|
{% endif %}
|