diff options
author | Akshen | 2019-06-03 11:49:07 +0530 |
---|---|---|
committer | GitHub | 2019-06-03 11:49:07 +0530 |
commit | 242b5f0f208839a2d25b55d11bf73f647d9f5201 (patch) | |
tree | 11ebe0fe791e863d9dbc96701d448d1184b02cd9 /fossee_manim/forms.py | |
parent | d6e8d4397a0ff3ea610c253e2648df257587f2bf (diff) | |
parent | cfd45b327a621a6a118954f4b18f5f020720cd10 (diff) | |
download | FOSSEE_animations-242b5f0f208839a2d25b55d11bf73f647d9f5201.tar.gz FOSSEE_animations-242b5f0f208839a2d25b55d11bf73f647d9f5201.tar.bz2 FOSSEE_animations-242b5f0f208839a2d25b55d11bf73f647d9f5201.zip |
Merge pull request #22 from Akshen/develop
Upload FileValidator added
Diffstat (limited to 'fossee_manim/forms.py')
-rw-r--r-- | fossee_manim/forms.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fossee_manim/forms.py b/fossee_manim/forms.py index 8edfb5c..3b9ca2e 100644 --- a/fossee_manim/forms.py +++ b/fossee_manim/forms.py @@ -280,7 +280,7 @@ class UploadAnimationForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(UploadAnimationForm, self).__init__(*args, **kwargs) - self.fields['video_path'].label = "Animation" + self.fields['video_path'].label = "Animation(.mp4 only)" class Meta: model = AnimationStats |