diff --git a/front/components/admin/form.vue b/front/components/admin/form.vue index ee83491..f113d0a 100644 --- a/front/components/admin/form.vue +++ b/front/components/admin/form.vue @@ -98,6 +98,10 @@ {{ LanguageSubtitles.FOREIGN }} + diff --git a/front/composables/types.ts b/front/composables/types.ts index f767100..065f7ac 100644 --- a/front/composables/types.ts +++ b/front/composables/types.ts @@ -5,6 +5,7 @@ export enum Format { export enum LanguageSubtitles { FRENCH = "VOF", FOREIGN = "VOSTFR", + DUBBED = "VF", } export type Film = { diff --git a/server/myapi/models.py b/server/myapi/models.py index 97dcf13..d357387 100644 --- a/server/myapi/models.py +++ b/server/myapi/models.py @@ -14,6 +14,7 @@ class Film(models.Model): class LanguageSubtitles(models.TextChoices): FRENCH = "VOF" FOREIGN = "VOSTFR" + DUBBED = "VF" projection_date = models.DateTimeField(null=True, blank=True) title = models.CharField(max_length=60)