I am going through the Django sample application and come across the URLConf.
I thought the import statement on the top resolves the url location, but for 'mysite.polls.urls' I couldn't remove the quotes by including in the import statement.
Why should I use quotes for 'mysite.polls.urls' and not for admin url? and what should I do if I have to remove the quotes.
from django.conf.urls.defaults import *
...
...
(r'^polls/', include('mysite.polls.urls')),
(r'^admin/', include(admin.site.urls)),