From a922c20902f3ecf52fcb9f1b10bc89613d6d3a77 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sat, 15 Sep 2007 20:05:25 +0000 Subject: [PATCH] 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 --- docs/admin.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) 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."