Hi there,

On Tue, 8 Sep 2009 10:49:30 -0700 (PDT), Streamweaver
<streamwea...@gmail.com> wrote:
> 
> I'm having trouble understanding the output of the reverse method.
> 
> I have the following URL pattern:
> 
> urlpatterns = patterns('dwrangler.project.views',
>     (r'^in_development/$', 'summary_in_development'),
> )
> 
[cut]

 I may be wrong, but I think you need to use 'url' method on urlpatterns
declaration:
 urlpatterns = patterns('dwrangler.project.views',
     url(r'^in_development/$', 'summary_in_development'),
 )


-- 
Ulysses Almeida
Analista Judiciário - Análise de Sistemas
Secretaria de Tecnologia da Informação - COINF - TRE-MS
ulysses.alme...@tre-ms.gov.br


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to