Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_casanatics
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
John Aidan Vincent M. Ng
midterm_casanatics
Commits
f249f755
Commit
f249f755
authored
Mar 04, 2023
by
justin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added basic admin functionality and fixed views in dashboard
parent
9b8480f2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
40 additions
and
22 deletions
+40
-22
admin.py
widget_casanatics/dashboard/admin.py
+32
-1
views.py
widget_casanatics/dashboard/views.py
+8
-21
No files found.
widget_casanatics/dashboard/admin.py
View file @
f249f755
from
django.contrib
import
admin
from
.models
import
Department
,
WidgetUser
# Register your models here.
class
DepartmentAdmin
(
admin
.
ModelAdmin
):
model
=
Department
list_display
=
(
"dept_name"
,
"home_unit"
,
)
search_fields
=
(
"dept_name"
,
"home_unit"
,
)
class
WidgetUserAdmin
(
admin
.
ModelAdmin
):
model
=
WidgetUser
list_display
=
(
"last_name"
,
"first_name"
,
"middle_name"
,
"department"
,
)
search_fields
=
(
"first_name"
,
"middle_name"
,
"last_name"
,
"department"
,
)
admin
.
site
.
register
(
WidgetUser
,
WidgetUserAdmin
)
admin
.
site
.
register
(
Department
,
DepartmentAdmin
)
widget_casanatics/dashboard/views.py
View file @
f249f755
from
django.db
import
models
from
django.http
import
HttpResponse
from
.models
import
Department
,
WidgetUser
class
Department
(
models
.
Model
):
dept_name
=
models
.
CharField
(
max_length
=
255
)
home_unit
=
models
.
CharField
(
max_length
=
255
)
def
dashboard
(
request
):
content
=
"Welcome to Widget! <br><br> WIDGET USERS: <br>"
users
=
WidgetUser
.
objects
.
all
(
)
def
__str__
(
self
)
:
return
f
"{self.dept_name}, {self.home_unit}
"
for
user
in
users
:
content
+=
str
(
user
)
+
": "
+
str
(
user
.
department
)
+
"<br>
"
class
WidgetUser
(
models
.
Model
):
first_name
=
models
.
CharField
(
max_length
=
255
)
middle_name
=
models
.
CharField
(
max_length
=
255
)
last_name
=
models
.
CharField
(
max_length
=
255
)
department
=
models
.
ForeignKey
(
Department
,
on_delete
=
models
.
CASCADE
,
)
def
__str__
(
self
):
return
f
"{self.last_name}, {self.first_name} {self.middle_name}"
def
displayName
(
self
):
return
f
"{self.first_name} {self.last_name}"
return
HttpResponse
(
content
)
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