mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
23 lines
401 B
HTML
23 lines
401 B
HTML
{% 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>Response:</h2>
|
|
|
|
<pre>{{ output }}</pre>
|
|
|
|
{% endif %}
|
|
{% include "response_previewform.html" %}
|
|
{% endblock %}
|