summaryrefslogtreecommitdiff
path: root/horizon/templates/horizon/client_side/_modal.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/templates/horizon/client_side/_modal.html')
-rw-r--r--horizon/templates/horizon/client_side/_modal.html22
1 files changed, 0 insertions, 22 deletions
diff --git a/horizon/templates/horizon/client_side/_modal.html b/horizon/templates/horizon/client_side/_modal.html
deleted file mode 100644
index 9922eeb5..00000000
--- a/horizon/templates/horizon/client_side/_modal.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% extends "horizon/client_side/template.html" %}
-{% load horizon %}
-
-{% block id %}modal_template{% endblock %}
-
-{% block template %}
-{% jstemplate %}
-<div class="modal hide">
- <div class='modal-header'>
- <a class='close' data-dismiss='modal'>&times;</a>
- <h3>[[title]]</h3>
- </div>
- <div class='modal-body'>
- [[body]]
- </div>
- <div class='modal-footer'>
- <a href='#' class='btn btn-primary'>[[confirm]]</a>
- <a href='#' class='btn cancel' data-dismiss='modal'>[[cancel]]</a>
- </div>
-</div>
-{% endjstemplate %}
-{% endblock %}