Dear all,

Because I want to plug a django app from urls.py as it is (without adding
any suffix), is it possible to include the app urls with this scenario?

# urls.py
urlpatterns = patterns('',
    (r'^$', include('djapp.urls')),
)

#djapp.urls
urlpatterns = patterns('djblog.views',
    (r'^comment/preview', 'preview_comment'),
    (r'^comment/save', 'save_comment'),
)

When I point the browser to: http://localhost:8080/comment/preview

I receive a 404 error.

Am I doing anything wrong?


thank you in advance

-- 
Join Scrum8.com.

http://blog.scrum8.com
http://twitter.com/scrum8

--~--~---------~--~----~------------~-------~--~----~
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