Commit f8ef1ce6 authored by Brendan Fausto's avatar Brendan Fausto

Fixed error in dashboard/models

parent 27adcf95
......@@ -22,5 +22,5 @@ class WidgetUser(models.Model):
return self.department.home_unit
def __str__(self):
return '{}, {} {}: {}, {}'.format(self.last_name, self.first_name, self.middle_name, self.dept_name
return '{}, {} {}: {}, {}'.format(self.last_name, self.first_name, self.middle_name, self.dept_name, self.home_unit)
\ 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