Changes between Initial Version and Version 3 of Ticket #18138


Ignore:
Timestamp:
Apr 15, 2012, 8:42:26 AM (12 years ago)
Author:
Karen Tracey
Comment:

Please follow the link above to find appropriate places to get help with resolving this issue. This is not a bug in Django, and Trac is not the right place to be asking for help. Also please use WikiFormatting and preview before posting so that your report can be read properly.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #18138

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #18138 – Description

    initial v3  
    33when i try to open the admin site it' gives me the following error
    44
    5 
     5{{{
    66DoesNotExist at /admin/
    77Site matching query does not exist.
     
    3030 '/Library/Python/2.7/site-packages']
    3131Server time:    Sun, 15 Apr 2012 07:08:37 -0500
    32 
     32}}}
    3333
    3434This is the installed applications part in the settings.py
    35 
     35{{{
    3636INSTALLED_APPS = (
    3737    'django.contrib.auth',
     
    4747     #'django.contrib.admindocs',
    4848)
    49 
     49}}}
    5050and this is the urls.py
    5151
    52 
    53 rom django.conf.urls import patterns, include, url
     52{{{
     53from django.conf.urls import patterns, include, url
    5454
    5555# Uncomment the next two lines to enable the admin:
     
    6868    url(r'^admin/', include(admin.site.urls)),
    6969)
    70 
     70}}}
    7171thanks
Back to Top