You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`post_detail` is a name of the view we want to go to. Remember that this view required a `pk` variable? To pass it to the views we use `kwargs={'pk': post.pk}`, where post is newly created blog post!
192
+
`blog.views.post_detail` is a name of the view we want to go to. Remember that this view required a `pk` variable? To pass it to the views we use `pk=post.pk`, where post is newly created blog post!
193
193
194
194
Ok, we talked a lot, but we probably would like to see how the whole view looks like, right?
195
195
@@ -200,7 +200,7 @@ Ok, we talked a lot, but we probably would like to see how the whole view looks
0 commit comments