summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/intro/tutorial02.txt4
-rw-r--r--docs/man/django-admin.13
-rw-r--r--docs/ref/django-admin.txt11
3 files changed, 0 insertions, 18 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt
index 4af08c48af..ffc95952f6 100644
--- a/docs/intro/tutorial02.txt
+++ b/docs/intro/tutorial02.txt
@@ -449,9 +449,5 @@ uses a template variable called ``app_list``. That variable contains every
installed Django app. Instead of using that, you can hard-code links to
object-specific admin pages in whatever way you think is best.
-Django offers another shortcut in this department. Run the command ``python
-manage.py adminindex polls`` to get a chunk of template code for inclusion in
-the admin index template. It's a useful starting point.
-
When you're comfortable with the admin site, read :ref:`part 3 of this tutorial
<intro-tutorial03>` to start working on public poll views.
diff --git a/docs/man/django-admin.1 b/docs/man/django-admin.1
index 6b58c9183b..7f65fd0644 100644
--- a/docs/man/django-admin.1
+++ b/docs/man/django-admin.1
@@ -18,9 +18,6 @@ script found at the top level of each Django project directory.
.sp
.SH "ACTIONS"
.TP
-.BI "adminindex [" "appname ..." "]"
-Prints the admin\-index template snippet for the given app name(s).
-.TP
.BI cleanup
Cleans out old data from the database (only expired sessions at the moment).
.TP
diff --git a/docs/ref/django-admin.txt b/docs/ref/django-admin.txt
index d6cb4e62f3..f9c3fe7ee7 100644
--- a/docs/ref/django-admin.txt
+++ b/docs/ref/django-admin.txt
@@ -95,17 +95,6 @@ that ``django-admin.py`` should print to the console.
Available subcommands
=====================
-adminindex
-----------
-
-.. django-admin:: adminindex <appname appname ...>
-
-Prints the admin-index template snippet for the given app name(s).
-
-Use admin-index template snippets if you want to customize the look and feel of
-your admin's index page. See :ref:`Tutorial 2 <intro-tutorial02>` for more
-information.
-
cleanup
-------