0 purchases
djangocpffield 0.1.1
cfp-field This is a test implementatipon of the CPF Validation as part of
the “Mão na Massa” proposal of the 4th module of Welcome to the Django
training (http://welcometothedjango.com.br/).
Como instalar?
pip install django-cpffield
Add “cpffield” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [
...
'cpffield',
]
Como utilizar dentro de um model.py no django?
from django.db import models
from cpffield import cpffield
class MyModel(models.Model):
cpf = cpffield.CPFField('CPF', max_length=14)
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.