aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/preview.html
diff options
context:
space:
mode:
Diffstat (limited to 'libpathod/templates/preview.html')
-rw-r--r--libpathod/templates/preview.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/libpathod/templates/preview.html b/libpathod/templates/preview.html
new file mode 100644
index 00000000..6599362f
--- /dev/null
+++ b/libpathod/templates/preview.html
@@ -0,0 +1,28 @@
+{% extends frame.html %}
+{% block body %}
+
+<h1>Preview</h1>
+
+{% if syntaxerror %}
+ <h2> Error: {{ syntaxerror }} </h2>
+ <pre>{{ marked }}</pre>
+{% elif error %}
+ <h2> Error </h2>
+ <p style="color: #ff0000">{{ error }}</p>
+{% else %}
+
+ <h2>Spec:</h2>
+
+ <pre>{{ spec }}</pre>
+
+ <h2>Response:</h2>
+
+ <pre>{{ output }}</pre>
+
+{% end %}
+ <form class="well form-search" method="GET" action="/preview">
+ <input style="width: 30em;" name="spec" class="input-medium search-query" value="{{spec}}">
+ <input type="submit" class="btn" value="preview">
+ <a href="#" class="btn">go</a>
+ </form>
+{% end %}