summaryrefslogtreecommitdiff
path: root/docs/intro/tutorial03.txt
diff options
context:
space:
mode:
Diffstat (limited to 'docs/intro/tutorial03.txt')
-rw-r--r--docs/intro/tutorial03.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt
index 23282c4f6d..47879fda65 100644
--- a/docs/intro/tutorial03.txt
+++ b/docs/intro/tutorial03.txt
@@ -214,6 +214,13 @@ Put the following code in that template:
<p>No polls are available.</p>
{% endif %}
+.. note::
+
+ To make the tutorial shorter, all template examples use incomplete HTML. In
+ your own projects you should use `complete HTML documents`__.
+
+__ https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Getting_started#Anatomy_of_an_HTML_document
+
Now let's update our ``index`` view in ``polls/views.py`` to use the template:
.. code-block:: python