Before you begin: Join our book community on Discord
Give your feedback straight to the author himself and chat to other readers on the book's dedicated Discord server (find the "early-access-fifth-edition" channel under "FEEDBACK AND SUGGESTIONS").
The previous chapter went through the basics of forms and the creation of a comment system. You also learned how to send emails with Django. In this chapter, you will extend your blog application with other popular features used on blogging platforms, such as tagging, recommending similar posts, providing an RSS feed to readers, and allowing them to search posts. You will learn about new components and functionalities with Django by building these functionalities.
The chapter will cover the following topics:
- Integrating third-party applications
- Using
django-taggit
to implement a tagging system - Building complex QuerySets to recommend similar posts
- Creating custom template tags and...