Skip to content

Commit

Permalink
Fixed #12465 -- Fixed double-escaped quote marks in <title> of Django…
Browse files Browse the repository at this point in the history
… documentation pages

git-svn-id: http://code.djangoproject.com/svn/djangoproject.com@12136 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrian committed Jan 9, 2010
1 parent 55c8c23 commit 0e06809
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions djangodocs/templates/docs/doc.html
@@ -1,6 +1,6 @@
{% extends "base_docs.html" %} {% extends "base_docs.html" %}


{% block title %}{{ doc.title|striptags }} | Django Documentation{% endblock %} {% block title %}{{ doc.title|striptags|safe }} | Django documentation{% endblock %}


{% block extrahead %} {% block extrahead %}
{{ block.super }} {{ block.super }}
Expand Down Expand Up @@ -40,7 +40,7 @@ <h2><a href="{% url document-index lang=lang, version=version %}">Django documen
{% block body %} {% block body %}
<h2 class="deck"> <h2 class="deck">
{% ifequal version "dev" %} {% ifequal version "dev" %}
This document is for Django's SVN release, which can be This document is for Django's development version, which can be
significantly different from previous releases. Get old docs here: significantly different from previous releases. Get old docs here:
<a href="{% url document-detail lang=lang, version="1.1", url=docurl %}">1.1</a>, <a href="{% url document-detail lang=lang, version="1.1", url=docurl %}">1.1</a>,
<a href="{% url document-detail lang=lang, version="1.0", url=docurl %}">1.0</a> <a href="{% url document-detail lang=lang, version="1.0", url=docurl %}">1.0</a>
Expand Down

0 comments on commit 0e06809

Please sign in to comment.