Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python Django Basics Final Details Step Detail View

Nursultan Bolatbayev
Nursultan Bolatbayev
16,774 Points

Why in url */courses/1/2/, it shows me not 2nd step of 1st course, but second course?

In this url it is supposed to show 2nd step of 1st course, right? But it shows me 2nd course. And in url */courses/1/1/ it is supposed to show me 1st step of 1st course, right? But it shows me all the steps of 1st course.

1 Answer

Alx Ki
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Alx Ki
Python Web Development Techdegree Graduate 14,822 Points

Check urls.py it can happen if views.course_detail is called instead of views.step_detail.

Should be:

urlpatterns = [
    url(r'^$', views.course_list),
    url(r'(?P<course_pk>\d+)/(?P<step_pk>\d+)/$', views.step_detail), 
    url(r'(?P<pk>\d+)/$', views.course_detail),
]