summaryrefslogtreecommitdiff
path: root/docs/tutorial02.txt
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2005-07-20 20:10:35 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2005-07-20 20:10:35 +0000
commite5a8c38fa1d9dae0bebc6b4671997b0f16e60913 (patch)
tree00a924592b7a37f9e635dc6f983a0b8c934583e5 /docs/tutorial02.txt
parentec31445c527a22a736cc769d35791f3fea9b477b (diff)
Added "philosophy" sections to tutorials so they can be styled differently
git-svn-id: http://code.djangoproject.com/svn/django/trunk@250 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/tutorial02.txt')
-rw-r--r--docs/tutorial02.txt29
1 files changed, 14 insertions, 15 deletions
diff --git a/docs/tutorial02.txt b/docs/tutorial02.txt
index 8a760b1a1d..98d7bf9f61 100644
--- a/docs/tutorial02.txt
+++ b/docs/tutorial02.txt
@@ -9,21 +9,20 @@ application and will focus on Django's automatically-generated admin site.
.. _Tutorial 1: http://www.djangoproject.com/documentation/tutorial1/
-Philosophy
-==========
-
-Generating admin sites for your staff or clients to add, change and delete
-content is tedious work that doesn't require much creativity. For that reason,
-Django entirely automates creation of admin interfaces for models.
-
-Django was written in a newsroom environment, with a very clear separation
-between "content publishers" and the "public" site. Site managers use the
-system to add news stories, events, sports scores, etc., and that content is
-displayed on the public site. Django solves the problem of creating a unified
-interface for site administrators to edit content.
-
-The admin isn't necessarily intended to be used by site visitors; it's for site
-managers.
+.. admonition:: Philosophy
+
+ Generating admin sites for your staff or clients to add, change and delete
+ content is tedious work that doesn't require much creativity. For that reason,
+ Django entirely automates creation of admin interfaces for models.
+
+ Django was written in a newsroom environment, with a very clear separation
+ between "content publishers" and the "public" site. Site managers use the
+ system to add news stories, events, sports scores, etc., and that content is
+ displayed on the public site. Django solves the problem of creating a unified
+ interface for site administrators to edit content.
+
+ The admin isn't necessarily intended to be used by site visitors; it's for site
+ managers.
Start the development server
============================