Commit e4567760 authored by John Tamano's avatar John Tamano

Polished formatting of homepage entries in admin page

parent 503e730c
......@@ -5,4 +5,7 @@ class WidgetUser(models.Model):
first_name = models.CharField(max_length=75)
middle_name = models.CharField(max_length=75)
last_name = models.CharField(max_length=75)
def __str__(self):
return'{}'.format(self.first_name)
# Create your models here.
\ 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