cata_system / tecnicas /models /presentador.py
chartManD's picture
create controller tecnicas and refactor views
b35645d
raw
history blame
325 Bytes
from django.db import models
class Presentador(models.Model):
nombre = models.CharField(max_length=255)
apellido = models.CharField(max_length=255)
nombre_usuario = models.CharField(max_length=255, unique=True)
contrasena = models.CharField(max_length=255)
def __str__(self):
return self.nombre