1
0
mirror of https://github.com/django/django.git synced 2025-06-05 03:29:12 +00:00

[1.4.x] Fixed #19911 - Updated generic view links.

Thanks marc@ for the report.
This commit is contained in:
Tim Graham 2013-02-25 13:01:15 -05:00
parent db1e8bdc33
commit 52bac4ede1
2 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ function anymore -- generic views can be (and are) used multiple times
Run the server, and use your new polling app based on generic views. Run the server, and use your new polling app based on generic views.
For full details on generic views, see the :doc:`generic views documentation For full details on generic views, see the :doc:`generic views documentation
</topics/http/generic-views>`. </topics/generic-views>`.
Coming soon Coming soon
=========== ===========

View File

@ -275,7 +275,7 @@ example::
messages.info(request, 'Hello world.', fail_silently=True) messages.info(request, 'Hello world.', fail_silently=True)
Internally, Django uses this functionality in the create, update, and delete Internally, Django uses this functionality in the create, update, and delete
:doc:`generic views </topics/http/generic-views>` so that they work even if the :doc:`generic views </topics/generic-views>` so that they work even if the
message framework is disabled. message framework is disabled.
.. note:: .. note::