Commit 7208b13e authored by Anya Habana's avatar Anya Habana

Added id_num and email fields to WidgetUser in Homepage

parent 28633d6e
......@@ -4,4 +4,6 @@ from django.db import models
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
last_name = models.CharField(max_length=50)
id_num = models.CharField(max_length=7)
email = models.EmailField()
\ 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