summaryrefslogtreecommitdiff
path: root/docs/tutorial01.txt
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2005-07-16 05:34:17 +0000
committerAdrian Holovaty <adrian@holovaty.com>2005-07-16 05:34:17 +0000
commit451cdae8aef13dbafcdd5a02c5d16aa1d38a4d49 (patch)
treec6f9f58cf6603de56efd59dbead16b0eeb2b49fa /docs/tutorial01.txt
parente327294ade76c6b042543b455b647639db6b5093 (diff)
Added link to installation guide from docs/tutorial01.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@100 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial01.txt')
-rw-r--r--docs/tutorial01.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/docs/tutorial01.txt b/docs/tutorial01.txt
index f6015f1fc4..c00d9a0beb 100644
--- a/docs/tutorial01.txt
+++ b/docs/tutorial01.txt
@@ -4,14 +4,18 @@ Tutorial: Writing your first Django app
Let's learn by example.
-Throughout this documentation, we'll walk you through the creation of a simple
-Web poll application.
+Throughout this tutorial, we'll walk you through the creation of a simple Web
+poll application.
It'll consist of two parts:
* A public site that lets people vote in polls and view poll results.
* An admin site that lets you add, change and delete polls behind the scenes.
+We'll assume you have `Django installed`_ already.
+
+.. _`Django installed`: http://www.djangoproject.com/documentation/install/
+
Initial setup
=============