Browse Source

Mostra valor real de limite de upload.

pull/1276/head
Edward Ribeiro 8 years ago
parent
commit
cd0e867e93
  1. 4
      sapl/materia/forms.py
  2. 6
      sapl/norma/forms.py

4
sapl/materia/forms.py

@ -1022,7 +1022,9 @@ class ProposicaoForm(forms.ModelForm):
texto_original = self.cleaned_data.get('texto_original', False) texto_original = self.cleaned_data.get('texto_original', False)
if texto_original: if texto_original:
if texto_original.size > MAX_DOC_UPLOAD_SIZE: if texto_original.size > MAX_DOC_UPLOAD_SIZE:
raise ValidationError("Arquivo muito grande. ( > 5mb )") max_size = str(MAX_DOC_UPLOAD_SIZE / (1024 * 1024))
raise ValidationError(
"Arquivo muito grande. ( > {0}MB )".format(max_size))
return texto_original return texto_original
def clean(self): def clean(self):

6
sapl/norma/forms.py

@ -144,7 +144,9 @@ class NormaJuridicaForm(ModelForm):
texto_integral = self.cleaned_data.get('texto_integral', False) texto_integral = self.cleaned_data.get('texto_integral', False)
if texto_integral: if texto_integral:
if texto_integral.size > MAX_DOC_UPLOAD_SIZE: if texto_integral.size > MAX_DOC_UPLOAD_SIZE:
raise ValidationError("Arquivo muito grande. ( > 5mb )") max_size = str(MAX_DOC_UPLOAD_SIZE / (1024 * 1024))
raise ValidationError(
"Arquivo muito grande. ( > {0}MB )".format(max_size))
return texto_integral return texto_integral
def save(self, commit=False): def save(self, commit=False):
@ -178,7 +180,7 @@ class NormaRelacionadaForm(ModelForm):
def clean(self): def clean(self):
super(NormaRelacionadaForm, self).clean() super(NormaRelacionadaForm, self).clean()
if self.errors: if self.errors:
return self.errors return self.errors
cleaned_data = self.cleaned_data cleaned_data = self.cleaned_data

Loading…
Cancel
Save