Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_jupert
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
Joseph Izon
widget_jupert
Commits
57a86bb8
Commit
57a86bb8
authored
Apr 06, 2022
by
Cherish Magpayo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added ReactionAdmin and ReactionAdmin customizations
parent
b6509e20
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
1 deletion
+11
-1
admin.py
widget_jupert/announcements/admin.py
+11
-1
No files found.
widget_jupert/announcements/admin.py
View file @
57a86bb8
...
...
@@ -2,12 +2,22 @@ from django.contrib import admin
# Register your models here.
from
.models
import
Announcement
from
.models
import
Reaction
class
AnnouncementAdmin
(
admin
.
ModelAdmin
):
model
=
Announcement
search_fields
=
(
'announcement_title'
,)
list_display
=
(
'announcement_title'
,
'pub_date'
,)
list_display
=
(
'announcement_title'
,
'pub_date'
,
'author'
)
list_filter
=
(
'announcement_title'
,
'pub_date'
,)
class
ReactionAdmin
(
admin
.
ModelAdmin
):
model
=
Reaction
search_fields
=
(
'announcement'
,)
list_display
=
(
'announcement'
,
'reaction_name'
,
'tally'
)
list_filter
=
(
'announcement'
,)
admin
.
site
.
register
(
Announcement
,
AnnouncementAdmin
)
admin
.
site
.
register
(
Reaction
,
ReactionAdmin
)
\ No newline at end of file
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