Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group22
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
Norberto Tadeo
widget_group22
Commits
fb6fbb74
Commit
fb6fbb74
authored
Mar 18, 2022
by
Norberto Tadeo
😔
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added some things to forum
parent
5e194148
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
4 deletions
+3
-4
admin.cpython-39.pyc
widget_group22/forum/__pycache__/admin.cpython-39.pyc
+0
-0
admin.py
widget_group22/forum/admin.py
+3
-4
No files found.
widget_group22/forum/__pycache__/admin.cpython-39.pyc
View file @
fb6fbb74
No preview for this file type
widget_group22/forum/admin.py
View file @
fb6fbb74
...
...
@@ -5,10 +5,9 @@ from .models import Post
class
ForumAdmin
(
admin
.
ModelAdmin
):
model
=
Post
search_fields
=
(
'pub_date'
,)
list_display
=
(
'pub_date'
,)
list_filter
=
(
'pub_date'
,)
search_fields
=
(
'pub_date'
,
'post_title'
,)
list_display
=
(
'pub_date'
,
'post_title'
,)
list_filter
=
(
'pub_date'
,
'post_title'
,)
admin
.
site
.
register
(
Post
,
ForumAdmin
)
# Register your models here.
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