diff --git a/docs/faq/admin.txt b/docs/faq/admin.txt
a
|
b
|
|
54 | 54 | My admin-site CSS and images showed up fine using the development server, but they're not displaying when using mod_python. |
55 | 55 | --------------------------------------------------------------------------------------------------------------------------- |
56 | 56 | |
57 | | See :ref:`serving the admin files <howto-deployment-modpython-serving-the-admin-files` |
| 57 | See :ref:`serving the admin files <howto-deployment-modpython-serving-the-admin-files>` |
58 | 58 | in the "How to use Django with mod_python" documentation. |
59 | 59 | |
60 | 60 | My "list_filter" contains a ManyToManyField, but the filter doesn't display. |
diff --git a/docs/ref/contrib/contenttypes.txt b/docs/ref/contrib/contenttypes.txt
a
|
b
|
|
342 | 342 | Generic relations and aggregation |
343 | 343 | --------------------------------- |
344 | 344 | |
345 | | :ref:`Django's database aggregation API <topics-db-aggregation` |
| 345 | :ref:`Django's database aggregation API <topics-db-aggregation>` |
346 | 346 | doesn't work with a |
347 | 347 | :class:`~django.contrib.contenttypes.generic.GenericRelation`. For example, you |
348 | 348 | might be tempted to try something like:: |
diff --git a/docs/ref/templates/api.txt b/docs/ref/templates/api.txt
a
|
b
|
|
380 | 380 | .. versionchanged:: 1.2 |
381 | 381 | Prior to version 1.2, the ``messages`` variable was a lazy accessor for |
382 | 382 | ``user.get_and_delete_messages()``. It has been changed to include any |
383 | | messages added via the :ref:`messages framework <ref-contrib-messages`. |
| 383 | messages added via the :ref:`messages framework <ref-contrib-messages>`. |
384 | 384 | |
385 | 385 | django.core.context_processors.debug |
386 | 386 | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
diff --git a/docs/topics/db/aggregation.txt b/docs/topics/db/aggregation.txt
a
|
b
|
|
8 | 8 | |
9 | 9 | .. currentmodule:: django.db.models |
10 | 10 | |
11 | | The topic guide on :ref:`Django's database-abstraction API <topics-db-queries` |
| 11 | The topic guide on :ref:`Django's database-abstraction API <topics-db-queries>` |
12 | 12 | described the way that you can use Django queries that create, |
13 | 13 | retrieve, update and delete individual objects. However, sometimes you will |
14 | 14 | need to retrieve values that are derived by summarizing or *aggregating* a |