Modelling: Blog entries in multiple Subcategories

Hi, I would like to implement a blog in django, where single blog entries can be in several different subcategories. For example, blog entry1 can be in subcategory A.1, A.3, B.4, and C.1. It should be possible to add/remove categories, as well as to add/remove subcategories.

Unfortunately, I do not get on at the moment and would be happy if one of you could help me. Thanks in advance

In general, this matches the same pattern as a “tag”. The requirement becomes one of a many-to-many relationship between the entries and the subcategories.

Thank you for your awnser :slightly_smiling_face: