Store RPM in vinyles
This commit is contained in:
parent
02b81016b8
commit
e2d4a80dba
|
@ -13,7 +13,13 @@ class Command(BaseCommand):
|
||||||
default=stdin,
|
default=stdin,
|
||||||
help="Vinyle to be imported.")
|
help="Vinyle to be imported.")
|
||||||
|
|
||||||
|
parser.add_argument('--rpm',
|
||||||
|
type=int,
|
||||||
|
default=45,
|
||||||
|
help="RPM of the imported vinyles.")
|
||||||
|
|
||||||
def handle(self, *args, **options):
|
def handle(self, *args, **options):
|
||||||
|
rpm = options["rpm"]
|
||||||
file = options["input"]
|
file = options["input"]
|
||||||
vinyles = []
|
vinyles = []
|
||||||
for line in file:
|
for line in file:
|
||||||
|
@ -35,6 +41,7 @@ class Command(BaseCommand):
|
||||||
vinyle, created = Vinyle.objects.get_or_create(
|
vinyle, created = Vinyle.objects.get_or_create(
|
||||||
title=title,
|
title=title,
|
||||||
side_identifier=side,
|
side_identifier=side,
|
||||||
|
rp=rpm,
|
||||||
)
|
)
|
||||||
vinyle.authors.set(authors)
|
vinyle.authors.set(authors)
|
||||||
vinyle.save()
|
vinyle.save()
|
||||||
|
|
|
@ -218,6 +218,14 @@ class Vinyle(models.Model):
|
||||||
max_length=255,
|
max_length=255,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
rpm = models.PositiveIntegerField(
|
||||||
|
verbose_name=_('rounds per minute'),
|
||||||
|
choices=[
|
||||||
|
(33, _('33 RPM')),
|
||||||
|
(45, _('45 RPM')),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
|
||||||
authors = models.ManyToManyField(
|
authors = models.ManyToManyField(
|
||||||
'Auteur',
|
'Auteur',
|
||||||
verbose_name=_('authors'),
|
verbose_name=_('authors'),
|
||||||
|
|
Loading…
Reference in New Issue