summaryrefslogtreecommitdiff
path: root/docs/intro
diff options
context:
space:
mode:
authorJacob Kaplan-Moss <jacob@jacobian.org>2008-08-25 18:53:18 +0000
committerJacob Kaplan-Moss <jacob@jacobian.org>2008-08-25 18:53:18 +0000
commit7e06b69a3d1e1cdfef625bdf96f97ca5eb0eed74 (patch)
tree5726b0c6e27e8cd0be1324e2ca4bd4b0d6503822 /docs/intro
parentab7eabfcd1bdc51c15bf66e39ad389add4fc676d (diff)
Removed outdated "adminindex" command -- the same behavior is now far easier and better done in a template, or perhaps a custom `AdminSite.index` function. Refs #5500.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@8548 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/intro')
-rw-r--r--docs/intro/tutorial02.txt4
1 files changed, 0 insertions, 4 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.