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
5a021bf3
Commit
5a021bf3
authored
Mar 18, 2022
by
Carlo Echon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added admin search and filterfor Announcements
parent
5bf0c3c3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
admin.py
widget_alipins/announcements/admin.py
+5
-1
models.py
widget_alipins/announcements/models.py
+1
-1
No files found.
widget_alipins/announcements/admin.py
View file @
5a021bf3
...
@@ -3,4 +3,8 @@ from django.contrib import admin
...
@@ -3,4 +3,8 @@ from django.contrib import admin
# Register your models here.
# Register your models here.
from
.models
import
Announcement
from
.models
import
Announcement
admin
.
site
.
register
(
Announcement
)
class
AnnouncementAdmin
(
admin
.
ModelAdmin
):
\ No newline at end of file
model
=
Announcement
search_fields
=
[
'announcement_title'
,
'announcement_body'
]
list_display
=
(
'announcement_title'
,
'announcement_body'
,
'pub_date'
)
admin
.
site
.
register
(
Announcement
,
AnnouncementAdmin
)
\ No newline at end of file
widget_alipins/announcements/models.py
View file @
5a021bf3
...
@@ -3,7 +3,7 @@ from django.db import models
...
@@ -3,7 +3,7 @@ from django.db import models
# Create your models here.
# Create your models here.
class
Announcement
(
models
.
Model
):
class
Announcement
(
models
.
Model
):
announcement_title
=
models
.
CharField
(
max_length
=
50
)
announcement_title
=
models
.
CharField
(
max_length
=
50
)
announcement_body
=
models
.
CharField
(
max_length
=
500
)
announcement_body
=
models
.
TextField
(
max_length
=
1
500
)
pub_date
=
models
.
DateTimeField
(
"date published"
)
pub_date
=
models
.
DateTimeField
(
"date published"
)
def
__str__
(
self
):
def
__str__
(
self
):
...
...
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