summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2007-09-15 20:05:25 +0000
committerAdrian Holovaty <adrian@holovaty.com>2007-09-15 20:05:25 +0000
commita922c20902f3ecf52fcb9f1b10bc89613d6d3a77 (patch)
tree9c872eb9faae3822b12cc2b8a577e7a2d5047f94
parent96e60ff79cb8642ef22b0817bf2e45ab1fe2b329 (diff)
newforms-admin: Added intro to docs/admin.txt
git-svn-id: http://code.djangoproject.com/svn/django/branches/newforms-admin@6326 bcc190cf-cafb-0310-a4f2-bffc1f526a37
-rw-r--r--docs/admin.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/admin.txt b/docs/admin.txt
index 020c26ad60..6f6797d82d 100644
--- a/docs/admin.txt
+++ b/docs/admin.txt
@@ -2,3 +2,15 @@
The Django admin site
=====================
+One of the most powerful parts of Django is the automatic admin interface. It
+reads metadata in your model to provide a powerful and production-ready
+interface that content producers can immediately use to start adding content to
+the site. In this document, we discuss how to activate, use and customize
+Django's admin interface.
+
+.. admonition:: Note
+
+ The admin site has been refactored significantly since Django 0.96. This
+ document describes the newest version of the admin site, which allows for
+ much richer customization. If you've kept up with Django development, you
+ may have heard this described as "newforms-admin."