p
Size: a a a
p
DT
DT
.
.
NK
.
class VideoType(Enum):
MONO = "Equirectangular projection"
STEREO_V = "Stereo (Side by side)"
STEREO_H = "Stereo (Over, Under)"
video_type = models.CharField(max_length=50, default=VideoType.MONO.name,
choices=[(tag, tag.value) for tag in VideoType])
video_type = forms.ChoiceField(choices=[(tag, tag.value) for tag in VideoType])
.
NK
.
p
ZR
G
КН
КН
G
И
Ю
И
MS