diff --git a/docs/intro/tutorial01.txt b/docs/intro/tutorial01.txt index c6554f34371..63088075d96 100644 --- a/docs/intro/tutorial01.txt +++ b/docs/intro/tutorial01.txt @@ -35,10 +35,8 @@ older versions of Django and install a newer one. .. admonition:: Where to get help: - If you're having trouble going through this tutorial, please post a message - to |django-users| or drop by `#django on irc.freenode.net - `_ to chat with other Django users who might - be able to help. + If you're having trouble going through this tutorial, please head over to + the :doc:`Getting Help` section of the FAQ. Creating a project ================== diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index 569e156c108..bcc4e9f04dc 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -6,6 +6,11 @@ This tutorial begins where :doc:`Tutorial 1 ` left off. We'll setup the database, create your first model, and get a quick introduction to Django's automatically-generated admin site. +.. admonition:: Where to get help: + + If you're having trouble going through this tutorial, please head over to + the :doc:`Getting Help` section of the FAQ. + Database setup ============== diff --git a/docs/intro/tutorial03.txt b/docs/intro/tutorial03.txt index 1d775e844b4..23282c4f6dd 100644 --- a/docs/intro/tutorial03.txt +++ b/docs/intro/tutorial03.txt @@ -6,6 +6,11 @@ This tutorial begins where :doc:`Tutorial 2 ` left off. We're continuing the Web-poll application and will focus on creating the public interface -- "views." +.. admonition:: Where to get help: + + If you're having trouble going through this tutorial, please head over to + the :doc:`Getting Help` section of the FAQ. + Overview ======== diff --git a/docs/intro/tutorial04.txt b/docs/intro/tutorial04.txt index c707ba69679..414156b56c5 100644 --- a/docs/intro/tutorial04.txt +++ b/docs/intro/tutorial04.txt @@ -6,6 +6,11 @@ This tutorial begins where :doc:`Tutorial 3 ` left off. We're continuing the Web-poll application and will focus on form processing and cutting down our code. +.. admonition:: Where to get help: + + If you're having trouble going through this tutorial, please head over to + the :doc:`Getting Help` section of the FAQ. + Write a minimal form ==================== diff --git a/docs/intro/tutorial05.txt b/docs/intro/tutorial05.txt index 8d1791e0102..b056d53bea1 100644 --- a/docs/intro/tutorial05.txt +++ b/docs/intro/tutorial05.txt @@ -6,6 +6,11 @@ This tutorial begins where :doc:`Tutorial 4 ` left off. We've built a Web-poll application, and we'll now create some automated tests for it. +.. admonition:: Where to get help: + + If you're having trouble going through this tutorial, please head over to + the :doc:`Getting Help` section of the FAQ. + Introducing automated testing ============================= diff --git a/docs/intro/tutorial06.txt b/docs/intro/tutorial06.txt index 91a0a10f24b..e81f6cdf0c5 100644 --- a/docs/intro/tutorial06.txt +++ b/docs/intro/tutorial06.txt @@ -20,6 +20,11 @@ That's what ``django.contrib.staticfiles`` is for: it collects static files from each of your applications (and any other places you specify) into a single location that can easily be served in production. +.. admonition:: Where to get help: + + If you're having trouble going through this tutorial, please head over to + the :doc:`Getting Help` section of the FAQ. + Customize your *app's* look and feel ==================================== diff --git a/docs/intro/tutorial07.txt b/docs/intro/tutorial07.txt index 60fef31da65..9bcc2b40a3b 100644 --- a/docs/intro/tutorial07.txt +++ b/docs/intro/tutorial07.txt @@ -7,6 +7,11 @@ continuing the Web-poll application and will focus on customizing Django's automatically-generated admin site that we first explored in :doc:`Tutorial 2 `. +.. admonition:: Where to get help: + + If you're having trouble going through this tutorial, please head over to + the :doc:`Getting Help` section of the FAQ. + Customize the admin form ========================