Hi Djangoers,

I just completed the tutorial 3 and got a little confused on the last
section<https://docs.djangoproject.com/en/dev/intro/tutorial03/#decoupling-the-urlconfs>of
the tutorial,

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

In this for the polls app, we are assigning the urls.py path in the quotes
'polls.urls'
but for admin we are not?

So what is the difference and being it quotes how does it still pick up the
path? Does django not consider it to be simply string.

-- 
Thanks & Regards
Smaran Harihar

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to