Hi rbar,

On 21/10/2020 20.34, rbar...@xcaretresearch.com wrote:
The error message shows that there is a match.  What am I doing wrong?

No, the error message shows you that there *isn't* a match:


The current path, polls/3/detail, didn't match any of these.


Maybe change:

path('<int:question_id>/', views.detail, name='detail'),

to:

path('<int:question_id>/detail', views.detail, name='detail'),

The error message is quite clear and helpful, you probably just didn't read it correctly. No worries, that can happen to all of us often enough :-)

Hope that helps.

Kind regards,

Kasper Laudrup

--
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 view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cfe2a624-f52e-e134-c391-8ba6d37925e3%40stacktrace.dk.

Reply via email to