Ticket #5536: different-than-fix.diff

File different-than-fix.diff, 3.6 KB (added by jonnylamb@…, 17 years ago)

Fix for issue.

  • templates/docs/detail.html

     
    88<h2 class="deck">
    99{% ifequal version "trunk" %}
    1010  This document is for Django's SVN release, which can be
    11   significantly different than previous releases. Get old docs here:
     11  significantly different from previous releases. Get old docs here:
    1212  {% for r in all_versions %}
    1313    <a href="../{{ r.version }}/{{ slug }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %}
    1414  {% endfor %}
  • templates/docs/model_detail.html

     
    88<h2 class="deck">
    99{% ifequal version "trunk" %}
    1010  This example is for Django's SVN release, which can be
    11   significantly different than previous releases. Get old examples here:
     11  significantly different from previous releases. Get old examples here:
    1212  {% for r in all_versions %}
    1313    <a href="/documentation/{{ r.version }}/models/{{ slug }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %}
    1414  {% endfor %}
  • templates/docs/0.96_index.html

     
    66<h2 class="deck">
    77{% ifequal version "trunk" %}
    88  These docs are for Django's SVN release, which can be
    9   significantly different than previous releases. Get old docs here:
     9  significantly different from previous releases. Get old docs here:
    1010  {% for r in all_versions %}
    1111    <a href="{{ r.version }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %}
    1212  {% endfor %}
  • templates/docs/index.html

     
    66<h2 class="deck">
    77{% ifequal version "trunk" %}
    88  These docs are for Django's SVN release, which can be
    9   significantly different than previous releases. Get old docs here:
     9  significantly different from previous releases. Get old docs here:
    1010  {% for r in all_versions %}
    1111    <a href="{{ r.version }}/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %}
    1212  {% endfor %}
     
    1818
    1919<h2>The Django Book</h2>
    2020
    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 than version 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>
    2222
    2323<h2>The essential documentation</h2>
    2424
  • templates/docs/model_index.html

     
    66  <h2 class="deck">
    77  {% ifequal version "trunk" %}
    88    These examples are from Django's SVN release, which can be
    9     significantly different than previous releases. Get old examples here:
     9    significantly different from previous releases. Get old examples here:
    1010    {% for r in all_versions %}
    1111      <a href="../{{ r.version }}/models/">{{ r.version }}</a>{% if forloop.last %}.{% else %},{% endif %}
    1212    {% endfor %}
Back to Top