summaryrefslogtreecommitdiff
path: root/horizon/dashboards/syspanel/networks/templates/networks/subnets/_create.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/dashboards/syspanel/networks/templates/networks/subnets/_create.html')
-rw-r--r--horizon/dashboards/syspanel/networks/templates/networks/subnets/_create.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/horizon/dashboards/syspanel/networks/templates/networks/subnets/_create.html b/horizon/dashboards/syspanel/networks/templates/networks/subnets/_create.html
new file mode 100644
index 00000000..1e16b900
--- /dev/null
+++ b/horizon/dashboards/syspanel/networks/templates/networks/subnets/_create.html
@@ -0,0 +1,25 @@
+{% extends "horizon/common/_modal_form.html" %}
+{% load i18n %}
+
+{% block form_id %}create_subnet_form{% endblock %}
+{% block form_action %}{% url horizon:syspanel:networks:addsubnet network.id %}
+{% endblock %}
+
+{% block modal-header %}{% trans "Create Subnet" %}{% 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 "You can create a subnet for the network. Any network address can be specified unless the network address does not overlap other subnets in the network." %}</p>
+</div>
+{% endblock %}
+
+{% block modal-footer %}
+ <input class="btn btn-primary pull-right" type="submit" value="{% trans "Create Subnet" %}" />
+ <a href="{% url horizon:syspanel:networks:detail network.id %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
+{% endblock %}