[Django]-How to make a redirect view jump to a section in django

4👍

redirect (reverse('post_detail', post.slug) + '#comments')

https://docs.djangoproject.com/en/2.1/topics/http/shortcuts/#examples

0👍

I had the same problem a little while back and wrote a blog post about how I solved it. You can check it out here:

https://engineertodeveloper.com/how-to-route-back-to-specific-sections-on-a-page-in-django/

Leave a comment