summaryrefslogtreecommitdiff
path: root/openstack_dashboard/dashboards/project/images_and_snapshots/templates/images_and_snapshots/snapshots/_create.html
diff options
context:
space:
mode:
Diffstat (limited to 'openstack_dashboard/dashboards/project/images_and_snapshots/templates/images_and_snapshots/snapshots/_create.html')
-rw-r--r--openstack_dashboard/dashboards/project/images_and_snapshots/templates/images_and_snapshots/snapshots/_create.html26
1 files changed, 0 insertions, 26 deletions
diff --git a/openstack_dashboard/dashboards/project/images_and_snapshots/templates/images_and_snapshots/snapshots/_create.html b/openstack_dashboard/dashboards/project/images_and_snapshots/templates/images_and_snapshots/snapshots/_create.html
deleted file mode 100644
index 99d89488..00000000
--- a/openstack_dashboard/dashboards/project/images_and_snapshots/templates/images_and_snapshots/snapshots/_create.html
+++ /dev/null
@@ -1,26 +0,0 @@
-{% extends "horizon/common/_modal_form.html" %}
-{% load i18n %}
-{% load url from future %}
-
-{% block form_id %}create_snapshot_form{% endblock %}
-{% block form_action %}{% url 'horizon:project:images_and_snapshots:snapshots:create' instance.id %}{% endblock %}
-
-{% block modal_id %}create_snapshot_modal{% endblock %}
-{% block modal-header %}{% trans "Create Snapshot" %}{% 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 "Snapshots preserve the disk state of a running instance." %}</p>
-</div>
-{% endblock %}
-
-{% block modal-footer %}
- <input class="btn btn-primary pull-right" type="submit" value="{% trans "Create Snapshot" %}" />
- <a href="{% url 'horizon:project:images_and_snapshots:index' %}" class="btn secondary cancel close">{% trans "Cancel" %}</a>
-{% endblock %}