diff options
| author | Tim Graham <timograham@gmail.com> | 2013-05-23 08:36:53 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-05-23 08:37:56 -0400 |
| commit | 7df9c2bc7d6226b9f9ca7dd3da3f34c4b0482b06 (patch) | |
| tree | 5e4d498124e293bdf90e9761f250cedd1b59cdc6 | |
| parent | a6ff705aea7ffcfb5477ce8c94a6cc1cd70f4bb1 (diff) | |
[1.5.x] Fixed #20482 - Added a file reference in tutorial 3.
Thanks diek@ for the suggestion.
Backport of 9e65bd33db from master
| -rw-r--r-- | docs/intro/tutorial03.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 86cc5f97e6..8f1e5f6a1c 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -336,7 +336,7 @@ Put the following code in that template: <p>No polls are available.</p> {% endif %} -Now let's use that html template in our index view:: +Now let's update our ``index`` view in ``polls/views.py`` to use the template:: from django.http import HttpResponse from django.template import Context, loader |
