Tagged Questions
4
votes
1answer
92 views
Complex count across many to many field in Django ORM
So I have a set of tasks that can appear in many categories:
class TaskGroup(models.Model):
name = models.CharField(max_length=200)
slug = models.SlugField(max_length=200)
icon = ...