Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
widget_group 25
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
Andre Matthew Dumandan
widget_group 25
Commits
7afc1b6a
Commit
7afc1b6a
authored
May 22, 2022
by
Alia Lawraine Olay
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Changed announcement_list_view from FBV to CBV
parent
60652b06
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
views.py
widget_group_25/announcementboard/views.py
+2
-5
No files found.
widget_group_25/announcementboard/views.py
View file @
7afc1b6a
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
django.views.generic.list
import
ListView
from
django.views.generic.detail
import
DetailView
from
.models
import
Announcement
def
announcement_list_view
(
request
):
context
=
{}
context
[
'object_list'
]
=
Announcement
.
objects
.
order_by
(
'-pub_date'
)
.
all
()
return
render
(
request
,
'announcementboard/announcement_list.html'
,
context
)
class
AnnouncementListView
(
ListView
):
queryset
=
Announcement
.
objects
.
order_by
(
'-pub_date'
)
def
announcement_detail_view
(
request
,
pk
):
...
...
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