aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
diff options
context:
space:
mode:
authorJohannes Spielmann2013-01-15 13:46:41 +0100
committerJohannes Spielmann2013-01-15 13:46:41 +0100
commite67b23f1ace59f237f260075501a8fbf636b60f1 (patch)
tree46b6d7d561c6aab4b4bc4ec94041d54c1e190861 /rest_framework
parentda6b9576c5c5f019800555108fc86887ef7e453d (diff)
downloaddjango-rest-framework-e67b23f1ace59f237f260075501a8fbf636b60f1.tar.bz2
correcting template: closing tag was missing
Diffstat (limited to 'rest_framework')
-rw-r--r--rest_framework/templates/rest_framework/base.html2
1 files changed, 1 insertions, 1 deletions
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>