Skip to content

Instantly share code, notes, and snippets.

@gileno
Created January 26, 2015 20:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gileno/489c5678a9e31a3c465a to your computer and use it in GitHub Desktop.
Save gileno/489c5678a9e31a3c465a to your computer and use it in GitHub Desktop.
from django import forms
class MeuForm(forms.Form):
meu_campo = forms.CharField(
error_messages={'required': 'Este campo de ser preenchido'}
)
meu_campo2 = forms.IntegerField(
error_messages={'required': 'Este campo de ser preenchido', 'invalid': 'Informe um número válido'}
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment