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 =