Re: NoReverseMatch in django production server

2011-07-08 Thread urukay
Hi, try this in obras urls.py: obras urls.py: from django.conf.urls.defaults import * urlpatterns = patterns('obras.views', url(r'^presobra/$', 'pres_obra', name='pres_obra'), ) Radovan http://www.yau.sk On 7. Júl, 22:17 h., mf wrote: > The project is working fine in the dev server but

NoReverseMatch in django production server

2011-07-07 Thread mf
The project is working fine in the dev server but when I try to use it in the production sv(Gunicorn + Nginx), NoReverseMatch error appears. I checked the code several times and I can't find the error. urls.py: from django.conf.urls.defaults import patterns, include, url from django.conf import s