Ticket #10855: 10855.diff

File 10855.diff, 1.0 KB (added by Tim Graham, 15 years ago)

linking to how to create another superuser as suggested

  • docs/intro/tutorial02.txt

     
    8686====================
    8787
    8888Now, try logging in. (You created a superuser account in the first part of this
    89 tutorial, remember?) You should see the Django admin index page:
     89tutorial, remember?  If you didn't create one or forgot the password you can
     90:ref:`create another one <topics-auth-creating-superusers>`.) You should see
     91the Django admin index page:
    9092
    9193.. image:: _images/admin02t.png
    9294   :alt: Django admin index page
  • docs/topics/auth.txt

     
    398398:class:`~django.contrib.auth.models.AnonymousUser` objects on your own, but
    399399they're used by Web requests, as explained in the next section.
    400400
     401.. _topics-auth-creating-superusers:
     402
    401403Creating superusers
    402404-------------------
    403405
Back to Top