On Wed, Jul 16, 2014 at 10:24 PM, Matias Araujo
<matiasarauj...@gmail.com> wrote:
> Hi all! im devoloping a site in django and i need to recive an http request
> with an url of this type:
>
> http://testsystemser.cloudapp.net/pago/index?topic=payment&id=identificador-de-notificación-de-pago
> but i cant make it match with my urlconf in my project, i try with the
> following ur:
> url(r'pago/index/(?P<topic>\w)/(?P<id>\w)', 'apps.pagos.views.index',
> name='index'),
> l but it didnt match so i cant handle the request and recive the information
> i need.
>

In addition to what the other poster said, you have "pago/index/" in
your urls.py, but in the url you are trying to match it against, you
have "pago/index". These two strings are not the same, so it would not
match.

Cheers

Tom

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/CAFHbX1KuYRx2qhWHr4AtsKDgjFdR9HbHZ0a-qd7CFgtT2QFvBQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to