Commit 422ee696 by Alec Perkins

Minor style adjustment

parent 4cc3dd3b
...@@ -44,3 +44,7 @@ h2, h3 { ...@@ -44,3 +44,7 @@ h2, h3 {
bottom: 0; bottom: 0;
left: 0; left: 0;
} }
.response-info .meta {
border-bottom: 1px solid #ccc;
}
\ No newline at end of file
...@@ -84,9 +84,10 @@ ...@@ -84,9 +84,10 @@
<pre><b>{{ request.method }}</b> {{ request.get_full_path }}</pre> <pre><b>{{ request.method }}</b> {{ request.get_full_path }}</pre>
<div> <div>
<div class="response-info"> <div class="response-info">
<pre><b>HTTP {{ response.status_code }} {{ response.status_text }}</b>{% autoescape off %} <pre><div class="meta"><b>HTTP {{ response.status_code }} {{ response.status_text }}</b>{% autoescape off %}
{% for key, val in response.items %}<b>{{ key }}:</b> {{ val|urlize_quoted_links }} {% for key, val in response.items %}<b>{{ key }}:</b> {{ val|urlize_quoted_links }}
{% endfor %} {% endfor %}
</div>
{{ content|urlize_quoted_links }}</pre>{% endautoescape %} {{ content|urlize_quoted_links }}</pre>{% endautoescape %}
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment