Forums

URLs not working

I have some url patterns mapped as:

url(r'^recibo/(?P<pk>\d+)/$', recibo_detail, name='recibo_detail'), url(r'^pedido/(?P<pk>\d+)/$', pedido_detail, name='pedido_detail')

And I have views configuring what should be shown, but for some reason when I try to access something like http://carlosant.pythonanywhere.com/recibo/1/ I got a page not found error.

Did you reload the web app after making those changes? You could use django-extensions show_urls management command to debug the configured urls.