Tuesday, August 28, 2018

Re: Check file input extension

You can use FileExtensionValidator:
https://docs.djangoproject.com/en/stable/ref/validators/#django.core.validators.FileExtensionValidator

On Tuesday, August 28, 2018 at 7:35:39 AM UTC-4, René L. Hechavarría wrote:
Hi everyone, i need check file input format in forms.py, someone have any example. Thanks in advance.

My model form:

class TestModelForm(forms.ModelForm):
class Meta:
model = TestModel
exclude = ('id')

widgets = {
'doc_1': forms.FileInput(attrs={'class': 'form-control custom-file-input'}), }

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/f462176a-aede-4c07-a3b9-f4c273f1c164%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment