summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial04.txt2
-rw-r--r--docs/intro/tutorial05.txt2
2 files changed, 3 insertions, 1 deletions
diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt
index dc6f621ff3..59b0b8e81a 100644
--- a/docs/intro/tutorial04.txt
+++ b/docs/intro/tutorial04.txt
@@ -233,6 +233,8 @@ First, open the ``polls/urls.py`` URLconf and change it like so:
url(r'^(?P<question_id>[0-9]+)/vote/$', views.vote, name='vote'),
]
+.. _tutorial04-amend-views:
+
Amend views
-----------
diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt
index a2b1ba1f0f..24a7b29807 100644
--- a/docs/intro/tutorial05.txt
+++ b/docs/intro/tutorial05.txt
@@ -390,7 +390,7 @@ Improving our view
The list of polls shows polls that aren't published yet (i.e. those that have a
``pub_date`` in the future). Let's fix that.
-In :doc:`Tutorial 4 </intro/tutorial04>` we introduced a class-based view,
+In :ref:`Tutorial 4 <tutorial04-amend-views>` we introduced a class-based view,
based on :class:`~django.views.generic.list.ListView`:
.. snippet::