Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_Alipins
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
Angelico Ruiz T. Teaño
widget_Alipins
Commits
65fb471c
Commit
65fb471c
authored
2 years ago
by
Irish Danielle Morales
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add Department model to homepage
parent
8d787d68
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
37 additions
and
3 deletions
+37
-3
db.sqlite3
widget_alipins/db.sqlite3
+0
-0
admin.py
widget_alipins/homepage/admin.py
+8
-2
0003_department.py
widget_alipins/homepage/migrations/0003_department.py
+21
-0
models.py
widget_alipins/homepage/models.py
+8
-1
No files found.
widget_alipins/db.sqlite3
View file @
65fb471c
No preview for this file type
This diff is collapsed.
Click to expand it.
widget_alipins/homepage/admin.py
View file @
65fb471c
from
django.contrib
import
admin
from
.models
import
WidgetUser
from
.models
import
WidgetUser
,
Department
class
WidgetUserAdmin
(
admin
.
ModelAdmin
):
...
...
@@ -8,4 +8,10 @@ class WidgetUserAdmin(admin.ModelAdmin):
search_fields
=
[
'first_name'
,
'middle_name'
,
'last_name'
,
'id_num'
,
'email'
]
list_display
=
(
'first_name'
,
'middle_name'
,
'last_name'
,
'id_num'
,
'email'
)
admin
.
site
.
register
(
WidgetUser
,
WidgetUserAdmin
)
\ No newline at end of file
class
DepartmentAdmin
(
admin
.
ModelAdmin
):
model
=
Department
search_fields
=
[
'dept_name'
,
'home_unit'
]
list_display
=
(
'dept_name'
,
'home_unit'
)
admin
.
site
.
register
(
WidgetUser
,
WidgetUserAdmin
)
admin
.
site
.
register
(
Department
,
DepartmentAdmin
)
\ No newline at end of file
This diff is collapsed.
Click to expand it.
widget_alipins/homepage/migrations/0003_department.py
0 → 100644
View file @
65fb471c
# Generated by Django 4.0.3 on 2022-04-02 09:02
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'homepage'
,
'0002_widgetuser_email_widgetuser_id_num'
),
]
operations
=
[
migrations
.
CreateModel
(
name
=
'Department'
,
fields
=
[
(
'id'
,
models
.
BigAutoField
(
auto_created
=
True
,
primary_key
=
True
,
serialize
=
False
,
verbose_name
=
'ID'
)),
(
'dept_name'
,
models
.
CharField
(
max_length
=
100
)),
(
'home_unit'
,
models
.
CharField
(
max_length
=
150
)),
],
),
]
This diff is collapsed.
Click to expand it.
widget_alipins/homepage/models.py
View file @
65fb471c
...
...
@@ -9,4 +9,11 @@ class WidgetUser(models.Model):
email
=
models
.
EmailField
(
max_length
=
200
)
def
__str__
(
self
):
return
self
.
id_num
\ No newline at end of file
return
self
.
id_num
class
Department
(
models
.
Model
):
dept_name
=
models
.
CharField
(
max_length
=
100
)
home_unit
=
models
.
CharField
(
max_length
=
150
)
def
__str__
(
self
):
return
self
.
dept_name
\ No newline at end of file
This diff is collapsed.
Click to expand it.
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