What is the Better way Django Tags with DRF

26 Views Asked by At

I'm developing a Blog project with Django. I have thoughts on 'tag'. What should be the best approach? What I want is a tag system like here(stackoverflow)

class Post(models.Model):
    title =
    subtitle =
    category = FK
    author = FK
    content =
    tags = ManyToMany
    
class Tag(models.Model):
    name = 
    slug =
0

There are 0 best solutions below