Changes between Initial Version and Version 3 of Ticket #18138
- Timestamp:
- Apr 15, 2012, 8:42:26 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18138
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #18138 – Description
initial v3 3 3 when i try to open the admin site it' gives me the following error 4 4 5 5 {{{ 6 6 DoesNotExist at /admin/ 7 7 Site matching query does not exist. … … 30 30 '/Library/Python/2.7/site-packages'] 31 31 Server time: Sun, 15 Apr 2012 07:08:37 -0500 32 32 }}} 33 33 34 34 This is the installed applications part in the settings.py 35 35 {{{ 36 36 INSTALLED_APPS = ( 37 37 'django.contrib.auth', … … 47 47 #'django.contrib.admindocs', 48 48 ) 49 49 }}} 50 50 and this is the urls.py 51 51 52 53 rom django.conf.urls import patterns, include, url52 {{{ 53 from django.conf.urls import patterns, include, url 54 54 55 55 # Uncomment the next two lines to enable the admin: … … 68 68 url(r'^admin/', include(admin.site.urls)), 69 69 ) 70 70 }}} 71 71 thanks