Changeset 7619 for django/trunk/docs/authentication.txt
- Timestamp:
- 06/11/08 22:36:48 (5 months ago)
- Files:
-
- django/trunk/docs/authentication.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/docs/authentication.txt
r7590 r7619 271 271 manage.py createsuperuser --username=joe --email=joe@example.com 272 272 273 You will be prompted for a password. Once entered, the user is created. If you274 leave off the ``--username`` or the ``--email`` option, It will prompt you for 275 those values as well.273 You will be prompted for a password. After you enter one, the user will be 274 created immediately. If you leave off the ``--username`` or the ``--email`` 275 options, it will prompt you for those values. 276 276 277 277 If you're using an older release of Django, the old way of creating a superuser … … 280 280 python /path/to/django/contrib/auth/create_superuser.py 281 281 282 Where ``/path/to`` is the path to the Django codebase on your filesystem. The283 ``manage.py`` command is prefer ed since it'll figureout the correct path and282 ...where ``/path/to`` is the path to the Django codebase on your filesystem. The 283 ``manage.py`` command is preferred because it figures out the correct path and 284 284 environment for you. 285 285
