From 451cdae8aef13dbafcdd5a02c5d16aa1d38a4d49 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 16 Jul 2005 05:34:17 +0000 Subject: [PATCH] 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 --- docs/tutorial01.txt | 8 ++++++-- 1 file 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 =============