urls.py

2014-10-02 Thread ashley kenney
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

url help

2014-10-02 Thread ashley kenney
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'^about/', 'rango.views.about'),,. help. Not Found The requested URL /rango/about was not found on thi

Re: url help

2014-10-02 Thread ashley kenney
g.urls')), url(r'^admin/', include(admin.site.urls)), (r'^rango/$', include('rango.urls')), (r'^$', 'tango.views.index'), ) thanks ;) On Thursday, October 2, 2014 8:07:50 PM UTC-4, Lachlan Musicman wrote: > > What&#x