Ticket #5536: different-than-fix.diff
File different-than-fix.diff, 3.6 KB (added by , 17 years ago) |
---|
-
templates/docs/detail.html
8 8 <h2 class="deck"> 9 9 {% ifequal version "trunk" %} 10 10 This document is for Django's SVN release, which can be 11 significantly different thanprevious releases. Get old docs here:11 significantly different from previous releases. Get old docs here: 12 12 {% for r in all_versions %} 13 13 <a href="../{{ r.version }}/{{ slug }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %} 14 14 {% endfor %} -
templates/docs/model_detail.html
8 8 <h2 class="deck"> 9 9 {% ifequal version "trunk" %} 10 10 This example is for Django's SVN release, which can be 11 significantly different thanprevious releases. Get old examples here:11 significantly different from previous releases. Get old examples here: 12 12 {% for r in all_versions %} 13 13 <a href="/documentation/{{ r.version }}/models/{{ slug }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %} 14 14 {% endfor %} -
templates/docs/0.96_index.html
6 6 <h2 class="deck"> 7 7 {% ifequal version "trunk" %} 8 8 These docs are for Django's SVN release, which can be 9 significantly different thanprevious releases. Get old docs here:9 significantly different from previous releases. Get old docs here: 10 10 {% for r in all_versions %} 11 11 <a href="{{ r.version }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %} 12 12 {% endfor %} -
templates/docs/index.html
6 6 <h2 class="deck"> 7 7 {% ifequal version "trunk" %} 8 8 These docs are for Django's SVN release, which can be 9 significantly different thanprevious releases. Get old docs here:9 significantly different from previous releases. Get old docs here: 10 10 {% for r in all_versions %} 11 11 <a href="{{ r.version }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %} 12 12 {% endfor %} … … 18 18 19 19 <h2>The Django Book</h2> 20 20 21 <p>We're in the process of writing the official Django book. Follow its progress at <a href="http://www.djangobook.com/">djangobook.com</a>. Note that it assumes you're using the Django development version rather thanversion 0.96.</p>21 <p>We're in the process of writing the official Django book. Follow its progress at <a href="http://www.djangobook.com/">djangobook.com</a>. Note that it assumes you're using the Django development version rather from version 0.96.</p> 22 22 23 23 <h2>The essential documentation</h2> 24 24 -
templates/docs/model_index.html
6 6 <h2 class="deck"> 7 7 {% ifequal version "trunk" %} 8 8 These examples are from Django's SVN release, which can be 9 significantly different thanprevious releases. Get old examples here:9 significantly different from previous releases. Get old examples here: 10 10 {% for r in all_versions %} 11 11 <a href="../{{ r.version }}/models/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %} 12 12 {% endfor %}