On 8 déc, 10:13, Keats <neoke...@gmail.com> wrote: > hi, > How i can add it then ? > > i was thinking that the problem is "?" because :
It is. Please refer to the relevant RFC: the question mark is a reserved character used to specify the beginning of a querystring. If you want it to be part of the url itself, you do have to properly quote it (using django.utils.http.urlquote or the corresponding template tag). > <form method="POST" action="/blabla/topic/reply/115-test%20/%20test/" > id="addReplyForm" name="addReplyForm"> > works perfectly any other characters in the topic_name part seems to > work and since i'm only using : (.*) i didn't see how it could be an > URL mismatch matter because for me (.*) means match everything ... The url regexp is matched against the "path" part of the url - the querystring is ignored at this point. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@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.