aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--docs/topics/credits.md2
-rw-r--r--rest_framework/templates/rest_framework/base.html2
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/topics/credits.md b/docs/topics/credits.md
index 60800c9e..4af4ec8f 100644
--- a/docs/topics/credits.md
+++ b/docs/topics/credits.md
@@ -89,6 +89,7 @@ The following people have helped make REST framework great.
* Michael Mior - [michaelmior]
* Marc Tamlyn - [mjtamlyn]
* Richard Wackerbarth - [wackerbarth]
+* Johannes Spielmann - [shezi]
Many thanks to everyone who's contributed to the project.
@@ -213,3 +214,4 @@ You can also contact [@_tomchristie][twitter] directly on twitter.
[michaelmior]: https://github.com/michaelmior
[mjtamlyn]: https://github.com/mjtamlyn
[wackerbarth]: https://github.com/wackerbarth
+[shezi]: https://github.com/shezi
diff --git a/rest_framework/templates/rest_framework/base.html b/rest_framework/templates/rest_framework/base.html
index 42e49cb9..092bf2e4 100644
--- a/rest_framework/templates/rest_framework/base.html
+++ b/rest_framework/templates/rest_framework/base.html
@@ -112,7 +112,7 @@
<div class="request-info">
<pre class="prettyprint"><b>{{ request.method }}</b> {{ request.get_full_path }}</pre>
- <div>
+ </div>
<div class="response-info">
<pre class="prettyprint"><div class="meta nocode"><b>HTTP {{ response.status_code }} {{ response.status_text }}</b>{% autoescape off %}
{% for key, val in response.items %}<b>{{ key }}:</b> <span class="lit">{{ val|urlize_quoted_links }}</span>