How to make labels with properties in Django?

The django-tagging application provides basic tag functions. I need every tag in order to have properties (category, description, etc.), basically a related table. What recommendation should I try to get with django-tagging or implement "my tag" from scratch?

+1
source share
1 answer

Create a model to store tag metadata.

With the tag instance, you can find the model instance to find out the category, description, etc. You can even tag a metadata instance with a tag if you find this makes the process easier.

+1
source

Source: https://habr.com/ru/post/1754728/


All Articles