You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

19 lines
428 B

from django import forms
from django.contrib.auth.forms import UserCreationForm, UserChangeForm
from .models import Usuario
class UsuarioCreationForm(UserCreationForm):
class Meta:
model = Usuario
fields = ("email", "nombre", "foto")
labels = {'email': 'Dirección de correo'}
class UsuarioChangeForm(UserChangeForm):
class Meta:
model = Usuario
fields = ("email", "foto")