hello sweets!!!

I'm trying to display about page under rango app in my tango project.  I'm 
getting error below when I go to http://127.0.0.1:8000/rango/about.  Not 
sure what is wrong with   (r'^/rango/about', 'rango.views.about'),.  help.

Not Found

The requested URL /rango/about was not found on this server.


My rango/urls.py

from django.conf.urls import patterns, url
from rango import views

urlpatterns = patterns('',
        url(r'^$', views.index, name='index'),
            (r'^/rango/about', 'rango.views.about'),
)


My structure and following this exercise 3.7 
at http://www.tangowithdjango.com/book/chapters/setup.html#mapping-urls

<https://lh4.googleusercontent.com/-OJRiZgsptsk/VC23j_Hn77I/AAAAAAAAABQ/mm02MjD8wsk/s1600/django.png>

-- 
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 django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/e797f18a-f25a-4d52-b823-f1e5beac79c0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to