summaryrefslogtreecommitdiffstats
path: root/module/web/templates/default/backbone/queryDialog.html
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/templates/default/backbone/queryDialog.html')
-rwxr-xr-xmodule/web/templates/default/backbone/queryDialog.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/module/web/templates/default/backbone/queryDialog.html b/module/web/templates/default/backbone/queryDialog.html
new file mode 100755
index 000000000..a37ac6256
--- /dev/null
+++ b/module/web/templates/default/backbone/queryDialog.html
@@ -0,0 +1,25 @@
+{% extends 'default/backbone/modal.html' %}
+{% block header %}
+ <% title %>
+ <small style="background: url('icons/<% plugin %>') no-repeat right 0; background-size: 20px; padding-right: 22px">
+ <% plugin %>
+ </small>
+{% endblock %}
+{% block content %}
+ <form class="form-horizontal" action="#">
+ <legend><% description %></legend>
+ <div class="control-group">
+ <%= if captcha %>
+ <label class="control-label" for="inputText"><img src="data:image/<% type %>;base64,<% captcha %>"></label>
+ <div class="controls">
+ <input type="text" id="inputText" name="captcha">
+ </div>
+ <%/if%>
+ <% content %>
+ </div>
+ </form>
+{% endblock %}
+{% block buttons %}
+ <a href="#" class="btn btn-success">Submit</a>
+ <a href="#" class="btn btn-close">Close</a>
+{% endblock %} \ No newline at end of file