aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/request_preview.html
blob: eaf78898c870c2ac7e2bb84f8870b41f89469227 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends "frame.html" %}
{% block body %}  

<h1>Preview</h1>

{% if syntaxerror %}
    <h2> Error: {{ syntaxerror }} </h2>
    <pre>{{ marked }}</pre>
{% elif error %}
    <p style="color: #ff0000">{{ error }}</p>
{% else %}
    <h2>Spec:</h2>

    <pre>{{ spec }}</pre>

    <h2>Request:</h2>

    <pre>{{ output }}</pre>

{% endif %}  
{% include "request_previewform.html" %}
{% endblock %}