from django.conf.urls import patterns, include, url
from django.contrib import admin
admin.autodiscover()

urlpatterns = patterns('',
    url(r'^admin/', include(admin.site.urls)),
)


2013/6/13 Александр Соболев <[email protected]>

> Hi, maybe you should uncomment a few lines in project/urls.py
>
>
> 2013/6/13 Rebecca <[email protected]>
>
>> Thanks, I never uncommented the lines in the urls.py document!
>>
>> On Thursday, June 6, 2013 5:53:12 PM UTC-4, Rebecca wrote:
>>>
>>> I'm on part 2 of the django book tutorial (https://docs.djangoproject.**
>>> com/en/dev/intro/tutorial02/<https://docs.djangoproject.com/en/dev/intro/tutorial02/>)
>>> and am trying to get onto the admin login page in my browser.  When I go to
>>> the admin site on my local domain (http://127.0.0.1:8000/admin/)**, I
>>> dont get to the login screen.  I get to something else from django
>>>
>>> "
>>> It worked!Congratulations on your first Django-powered page.
>>>
>>> Of course, you haven't actually done any work yet. Here's what to do
>>> next:
>>>
>>>    - If you plan to use a database, edit the DATABASES setting in
>>>    myproject/settings.py.
>>>    - Start your first app by running python manage.py startapp [appname]
>>>    .
>>>
>>> You're seeing this message because you have DEBUG = True in your Django
>>> settings file and you haven't configured any URLs. Get to work!"
>>>
>>>
>>>
>>> but not the login screen it said i would get in the tutorial.  Anyone
>>> know why? or how to get to the login page?
>>>
>>>
>>> Thanks!!!!!!
>>>
>>  --
>> You received this message because you are subscribed to the Google Groups
>> "Django users" group.
>> To unsubscribe from this group and stop receiving emails from it, send an
>> email to [email protected].
>> To post to this group, send email to [email protected].
>> Visit this group at http://groups.google.com/group/django-users?hl=en.
>> For more options, visit https://groups.google.com/groups/opt_out.
>>
>>
>>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to