hello dear djangonauts,
Could anyone explain what is wrong here and i am getting an error 32:
broken pipe?
I am using this url: ...appname/mama/10/10/
*
url.py
(r'^appname/mama/(?P<arg_one>\d+)/(?P<arg_two>\d+)/$',
'appname.views.mama')
(r'^appname/mama/(?P<arg_one>\d+)/(?P<arg_two>\d+)/(?P<path>.*)$',
'django.views.static.serve', {'document_root': '/blah'})
views.py
def mama(request, arg_one=0, arg_two=0):
print arg_one
print arg_two
return render_to_response('blah/mainIntro.html')
*
Thanks in advance.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---