summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2018-10-31 20:50:10 -0400
committerTim Graham <timograham@gmail.com>2018-10-31 20:50:28 -0400
commit1df26757dd21d0dfd053bdc4ae9db0ef037224fe (patch)
treebc97ba802414caf0795ee6c111832231fb429eb9
parentcd7d6c8af7e9ecfd033c584ba50c782d6b82817c (diff)
[2.1.x] Fixed #22390 -- Doc'd possible server restart required in tutorial 6.
Backport of d8f83531c2dc40a7add4afc5b917c1e5a7452be8 from master.
-rw-r--r--docs/intro/tutorial06.txt14
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/intro/tutorial06.txt b/docs/intro/tutorial06.txt
index db1f1f47fd..e8b1d02764 100644
--- a/docs/intro/tutorial06.txt
+++ b/docs/intro/tutorial06.txt
@@ -74,9 +74,17 @@ Next, add the following at the top of ``polls/templates/polls/index.html``:
The ``{% static %}`` template tag generates the absolute URL of static files.
-That's all you need to do for development. Reload
-``http://localhost:8000/polls/`` and you should see that the question links are
-green (Django style!) which means that your stylesheet was properly loaded.
+That's all you need to do for development.
+
+Start the server (or restart it if it's already running):
+
+.. console::
+
+ $ python manage.py runserver
+
+Reload ``http://localhost:8000/polls/`` and you should see that the question
+links are green (Django style!) which means that your stylesheet was properly
+loaded.
Adding a background-image
=========================