Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_someone here is possessed by an owl
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Laetitia de Castro
widget_someone here is possessed by an owl
Commits
5cd6fc31
Commit
5cd6fc31
authored
Apr 04, 2022
by
Anya Habana
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added get method to display a Widget User's details
parent
b460ec87
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
11 additions
and
0 deletions
+11
-0
models.cpython-38.pyc
homepage/__pycache__/models.cpython-38.pyc
+0
-0
views.cpython-38.pyc
homepage/__pycache__/views.cpython-38.pyc
+0
-0
models.py
homepage/models.py
+11
-0
wsgi.cpython-38.pyc
widget/__pycache__/wsgi.cpython-38.pyc
+0
-0
No files found.
homepage/__pycache__/models.cpython-38.pyc
View file @
5cd6fc31
No preview for this file type
homepage/__pycache__/views.cpython-38.pyc
View file @
5cd6fc31
No preview for this file type
homepage/models.py
View file @
5cd6fc31
...
...
@@ -12,3 +12,14 @@ class WidgetUser(models.Model):
id_num
=
models
.
CharField
(
max_length
=
7
,
default
=
""
)
email
=
models
.
EmailField
(
default
=
""
)
department
=
models
.
ForeignKey
(
Department
,
on_delete
=
models
.
CASCADE
,
null
=
True
,
related_name
=
"users"
)
def
getWidgetUser
(
self
):
return
"{}, {} {}: {}, {}, {}, {}<br>"
.
format
(
self
.
last_name
,
self
.
first_name
,
self
.
middle_name
,
self
.
id_num
,
self
.
email
,
self
.
department
.
dept_name
,
self
.
department
.
home_unit
)
widget/__pycache__/wsgi.cpython-38.pyc
View file @
5cd6fc31
No preview for this file type
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