Commit d3cd576d authored by Anya Habana's avatar Anya Habana

Created WidgetUser models for homepage

parent 9d8135cc
from django.db import models
# Create your models here.
class WidgetUser(models.Model):
first_name = models.CharField(max_length=100)
middle_name = models.CharField(max_length=50)
last_name = models.CharField(max_length=50)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment