Hi Fernando,

> I have the following regexes on my django app urls.py:
>
> urlpatterns = patterns('',
>
>                        # List of all resumes for a given Career
>                        (r'(?P<career>[-\w]+)/$', career_list),
>
>                        # List of all resumes for a given jss
>                        (r'/jss/(?P<jss>[-\w]+)/$', jss_list),
>                        )

You need to remove replace /jss/ there with jss/:

(r'jss/(?P<jss>[-\w]+)/$', jss_list),

-Rajesh D

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to