diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index d15b2f43ae..6d4fb7eef1 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -550,5 +550,16 @@ with the :ttag:`url` template tag:
{{ poll.question }}
+.. note::
+
+ If ``{% url 'polls.views.detail' poll.id %}`` (with quotes) doesn't work,
+ but ``{% url polls.views.detail poll.id %}`` (without quotes) does, that
+ means you're using a version of Django ≤ 1.4. In this case, add the
+ following declaration at the top of your template:
+
+ .. code-block:: html+django
+
+ {% load url from future %}
+
When you're comfortable with writing views, read :doc:`part 4 of this tutorial
` to learn about simple form processing and generic views.