1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-07-06 21:34:01 +02:00

Cat ISBN list to future medias

This commit is contained in:
Yohann D'ANELLO
2020-05-22 21:37:02 +02:00
parent 20cb710af5
commit bed5912f54
3 changed files with 123 additions and 0 deletions

View File

@ -266,6 +266,16 @@ class FutureMedia(models.Model):
null=True,
)
type = models.CharField(
_('type'),
choices=[
('bd', _('BD')),
('manga', _('Manga')),
('roman', _('Roman')),
],
max_length=8,
)
class Meta:
verbose_name = _("future medium")
verbose_name_plural = _("future media")