[scrobbles] Rename tag fields
All checks were successful
build & deploy / test (push) Successful in 2m8s
build & deploy / deploy (push) Successful in 25s

This commit is contained in:
2026-04-30 17:37:21 -04:00
parent f486b1614b
commit acf0c342bf
6 changed files with 9 additions and 9 deletions

View File

@ -59,8 +59,8 @@ class ScrobblableMixin(TimeStampedModel):
title = models.CharField(max_length=255, **BNULL)
base_run_time_seconds = models.IntegerField(**BNULL)
genre = TaggableManager(through=ObjectWithGenres, blank=True)
tags = TaggableManager(blank=True)
genre = TaggableManager(through=ObjectWithGenres, blank=True, verbose_name="Genre")
tags = TaggableManager(blank=True, verbose_name="Tags")
class Meta:
abstract = True