Commit b4cd0ab1 authored by Norberto Tadeo's avatar Norberto Tadeo 😔

changed views.py display of widget user to be more convenient

parent 276424fd
...@@ -20,6 +20,6 @@ class WidgetUser(models.Model): ...@@ -20,6 +20,6 @@ class WidgetUser(models.Model):
) )
def __str__(self): def __str__(self):
return'{}'.format(self.last_name, self.first_name + self.middle_name, self.id_num, self.email) return'{}, {} {}'.format(self.last_name, self.first_name, self.middle_name, self.id_num, self.email)
# Create your models here. # 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