Kanban cards support all HTML tags, which means you can design them however you like. Odoo provides some built-in ways to make kanban cards more interactive. In this recipe, we will add color options, the star widget, and many2many tags on the kanban card.
Creating interactive kanban cards
Getting started
For this recipe, we will be using the my_library module from the previous recipe.
How to do it...
Follow the steps below to create an attractive kanban card.
- Add a new model to manage the tags for the library.book.rent model, as follows:
class LibraryRentTags(models...