Skip to content

Commit

Permalink
[djangoproject.com] autoescaping strikes again
Browse files Browse the repository at this point in the history
git-svn-id: http://code.djangoproject.com/svn/djangoproject.com@9075 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
jacob committed Sep 19, 2008
1 parent e0ff3ac commit 38a90d6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions django_website/templates/docs/detail.html
Expand Up @@ -18,7 +18,7 @@ <h2 class="deck">
{% endifequal %} {% endifequal %}
</h2> </h2>


{{ doc.body }} {{ doc.body|safe }}


<div id="content-secondary"> <div id="content-secondary">
<h2 id="comments">Questions/Feedback</h2> <h2 id="comments">Questions/Feedback</h2>
Expand All @@ -38,7 +38,7 @@ <h2 id="comments">Questions/Feedback</h2>


{% block content-related %} {% block content-related %}
<h2>Contents</h2> <h2>Contents</h2>
{{ doc.toc }} {{ doc.toc|safe }}
<h3>Last update:</h3> <h3>Last update:</h3>
<div>{{ update_date|date:"F j, Y, P" }} (<a href="http://www.timeanddate.com/worldclock/city.html?n=64">CDT</a>)</div> <div>{{ update_date|date:"F j, Y, P" }} (<a href="http://www.timeanddate.com/worldclock/city.html?n=64">CDT</a>)</div>
{% endblock %} {% endblock %}
2 changes: 1 addition & 1 deletion django_website/templates/docs/model_detail.html
Expand Up @@ -18,7 +18,7 @@ <h2 class="deck">
{% endifequal %} {% endifequal %}
</h2> </h2>


{{ doc.fragment }} {{ doc.fragment|safe }}


<h2 id="model-source-code">Model source code</h2> <h2 id="model-source-code">Model source code</h2>
<pre class="literal-block">{{ doc.model_source|escape }}</pre> <pre class="literal-block">{{ doc.model_source|escape }}</pre>
Expand Down

0 comments on commit 38a90d6

Please sign in to comment.