Re: What's wrong with 10 or more objects?

2009-08-04 Thread gentlestone
yes, bad regex, thank you for the help On 4. Aug, 09:35 h., krylatij wrote: >   try: >  url(r'^keyword/modify/(?P\d+)/$', 'klucoveSlovo_update', name = > 'keyword-modify'), --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Gr

Re: What's wrong with 10 or more objects?

2009-08-04 Thread krylatij
try: url(r'^keyword/modify/(?P\d+)/$', 'klucoveSlovo_update', name = 'keyword-modify'), --~--~-~--~~~---~--~~ 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@google

Re: What's wrong with 10 or more objects?

2009-08-04 Thread Daybreaker
I think you have to remove the opening/closing brackets inside your regex pattern. Your regex currently means "one character that is a digit or a plus sign". Cheers, Joongi Kim On 8월4일, 오후4시09분, gentlestone wrote: > I've got this error message: > --- > Reverse for 'keyword-modif

What's wrong with 10 or more objects?

2009-08-04 Thread gentlestone
I've got this error message: --- Reverse for 'keyword-modify' with arguments '()' and keyword arguments '{'id': '10'}' not found. - My URL definition is: - url(r'^keyword/modify/(?P[\d+])/$', 'klucoveSlovo_update', name = 'keyword-modify'), -