I have a category kind of model (called Tag):
class Tag(models.Model): name = models.CharField(...) slug = models.SlugField(unique=True) #...