music stream

This commit is contained in:
bkfox
2024-02-01 19:31:30 +01:00
parent e3966ca5cb
commit 93e286fa62
15 changed files with 276 additions and 233 deletions

View File

@ -67,7 +67,7 @@ class Station(models.Model):
max_length=2048,
null=True,
blank=True,
help_text=_("Audio streams urls used by station's player. One url " "a line."),
help_text=_("Audio streams urls used by station's player. One url a line."),
)
default_cover = FilerImageField(
on_delete=models.SET_NULL,
@ -76,6 +76,11 @@ class Station(models.Model):
blank=True,
related_name="+",
)
music_stream_title = models.CharField(
_("Music stream's title"),
max_length=64,
default=_("Music stream"),
)
objects = StationQuerySet.as_manager()