gui/cgcs_dashboard/dashboards/admin/inventory/templates/inventory/storages/_createphysicalvolume.html

28 lines
825 B
HTML
Executable File

{% extends "horizon/common/_modal_form.html" %}
{% load i18n %}
{% block form_id %}add_physicalvolume_form{% endblock %}
{% block form_action %}{% url 'horizon:admin:inventory:addphysicalvolume' host_id %}{% endblock %}
{% block modal-header %}{% trans "Create Physical Volume" %}{% endblock %}
{% block modal-body %}
<div class="left">
<fieldset>
{% include "horizon/common/_form_fields.html" %}
</fieldset>
</div>
<div class="right">
<h3>{% trans "Description" %}:</h3>
<p>{% trans "From here you can define the configuration of a new physical volume." %}</p>
</div>
{% endblock %}
{% block modal-footer %}
<a class="btn btn-default cancel" data-dismiss="modal">Cancel</a>
<input class="btn btn-primary pull-right" type="submit" value="{% trans "Create Physical Volume" %}" />
{% endblock %}