summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJames Bennett <ubernostrum@gmail.com>2008-06-08 07:24:00 +0000
committerJames Bennett <ubernostrum@gmail.com>2008-06-08 07:24:00 +0000
commit8198bfeceee39975e2cc6cfa884c59656f07a20e (patch)
treefc1258917f642341d34e49acadfd6f069ac4ab24 /docs
parent87c2423d34c631690078efff318f572b0a0e0c1c (diff)
Move "createsuperuser" docs down one slot to maintain alphabetical ordering of commands
git-svn-id: http://code.djangoproject.com/svn/django/trunk@7594 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/django-admin.txt41
1 files changed, 20 insertions, 21 deletions
diff --git a/docs/django-admin.txt b/docs/django-admin.txt
index f11d05b8f3..28d25ec755 100644
--- a/docs/django-admin.txt
+++ b/docs/django-admin.txt
@@ -85,27 +85,6 @@ your admin's index page. See `Tutorial 2`_ for more information.
.. _Tutorial 2: ../tutorial02/
-createsuperuser
----------------
-
-**New in Django development version**
-
-Creates a superuser account (a user who has all permissions). This is
-useful if you need to create an initial superuser account but did not
-do so during ``syncdb``, or if you need to programmatically generate
-superuser accounts for your site(s).
-
-When run interactively, this command will prompt for a password for
-the new superuser account; when run non-interactively, no password
-will be set and the superuser account will not be able to log in until
-a password has been manually set for it.
-
-The username and e-mail address for the new account can be supplied by
-using the ``--username`` and ``--email`` arguments on the command
-line; if not supplied, ``createsuperuser`` will prompt for them when
-running interactively.
-
-
createcachetable <tablename>
----------------------------
@@ -130,6 +109,26 @@ the program name (``psql``, ``mysql``, ``sqlite3``) will find the program in
the right place. There's no way to specify the location of the program
manually.
+createsuperuser
+---------------
+
+**New in Django development version**
+
+Creates a superuser account (a user who has all permissions). This is
+useful if you need to create an initial superuser account but did not
+do so during ``syncdb``, or if you need to programmatically generate
+superuser accounts for your site(s).
+
+When run interactively, this command will prompt for a password for
+the new superuser account; when run non-interactively, no password
+will be set and the superuser account will not be able to log in until
+a password has been manually set for it.
+
+The username and e-mail address for the new account can be supplied by
+using the ``--username`` and ``--email`` arguments on the command
+line; if not supplied, ``createsuperuser`` will prompt for them when
+running interactively.
+
diffsettings
------------