Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_robo_mommy
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Raul Jarod Conanan
midterm_robo_mommy
Commits
6557d760
Commit
6557d760
authored
May 11, 2023
by
RJC
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modified user model to display in format: last_name, first_name
parent
5923066b
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
models.py
widget_robo_mommy/Dashboard/models.py
+3
-0
No files found.
widget_robo_mommy/Dashboard/models.py
View file @
6557d760
...
...
@@ -16,6 +16,9 @@ class WidgetUser(models.Model):
last_name
=
models
.
CharField
(
max_length
=
50
)
department
=
models
.
ForeignKey
(
Department
,
related_name
=
"department"
,
on_delete
=
models
.
CASCADE
)
def
__str__
(
self
)
->
str
:
return
str
(
self
.
last_name
+
', '
+
self
.
first_name
)
def
get_absolute_url
(
self
):
return
reverse
(
'widgetuser-detail'
,
kwargs
=
{
'pk'
:
self
.
pk
})
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment