An open API service indexing awesome lists of open source software.

https://github.com/znc-sistemas/django-localbr

Localization of FormFields, Widgets and etc to Brazilian Portuguese
https://github.com/znc-sistemas/django-localbr

Last synced: 3 months ago
JSON representation

Localization of FormFields, Widgets and etc to Brazilian Portuguese

Awesome Lists containing this project

README

          

django-localbr
==============

Localization of FormFields, Widgets and etc to Brazilian Portuguese

Exemplo:

```python
class CadastroForm(forms.ModelForm):

cpf = BRCPFField(always_return_formated=True, return_format=u'%s%s%s%s')

class Meta:
model = models.Cadastro
fields = (
'nome_completo',
'cpf',
'empresa',
'mail',
'celular',
)
```