Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_CtrlF
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
Fritzie Dianne Del Pilar
midterm_CtrlF
Commits
7ee7da4d
Commit
7ee7da4d
authored
May 15, 2023
by
Fritzie Dianne Del Pilar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Edited views.py
parent
98c43851
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
46 additions
and
24 deletions
+46
-24
views.py
widget_CtrlF/announcement_board/views.py
+46
-24
No files found.
widget_CtrlF/announcement_board/views.py
View file @
7ee7da4d
from
django.shortcuts
import
render
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
django.views.generic.detail
import
DetailView
from
.models
import
Announcement
,
Reaction
from
django.views.generic.edit
import
CreateView
,
UpdateView
from
.models
import
Announcement
def
index
(
request
):
def
index
(
request
):
announcement_view
=
"Widget's Announcement Board <br/>"
announcement_view
=
"Widget's Announcement Board <br/>"
announcements
=
Announcement
.
objects
.
all
()
announcements
=
Announcement
.
objects
.
all
()
reactions
=
Reaction
.
objects
.
all
()
return
render
(
request
,
for
a
in
announcements
:
'announcements/announcements.html'
,
like_tally
=
0
{
'announcements_list'
:
announcements
},
love_tally
=
0
)
angry_tally
=
0
for
r
in
reactions
:
if
r
.
name
==
"Like"
and
r
.
announcement
==
a
:
class
AnnouncementsDetailView
(
DetailView
):
like_tally
+=
r
.
tally
model
=
Announcement
elif
r
.
name
==
"Love"
and
r
.
announcement
==
a
:
template_name
=
'announcements/announcement-details.html'
love_tally
+=
r
.
tally
elif
r
.
name
==
"Angry"
and
r
.
announcement
==
a
:
angry_tally
+=
r
.
tally
class
AnnouncementsCreateView
(
CreateView
):
announcement_view
+=
"<br/> {} by {} {} published {}: <br/> {} <br/> Like: {} <br/> Love: {} <br/> Angry: {} <br/>"
.
\
model
=
Announcement
format
(
a
.
title
,
fields
=
'title'
,
'body'
,
'author'
a
.
author
.
first_name
,
template_name
=
'announcements/announcement-add.html'
a
.
author
.
last_name
,
a
.
pub_datetime
.
strftime
(
'
%
m/
%
d/
%
Y,
%
H:
%
M
%
p'
),
a
.
body
,
class
AnnouncementsUpdateView
(
UpdateView
):
like_tally
,
model
=
Announcement
love_tally
,
fields
=
'title'
,
'body'
,
'author'
angry_tally
)
template_name
=
'announcements/announcement-edit.html'
return
HttpResponse
(
announcement_view
)
# for a in announcements:
\ No newline at end of file
# like_tally=0
# love_tally=0
# angry_tally=0
# for r in reactions:
# if r.name=="Like" and r.announcement==a:
# like_tally+=r.tally
# elif r.name=="Love" and r.announcement==a:
# love_tally+=r.tally
# elif r.name=="Angry" and r.announcement==a:
# angry_tally+=r.tally
# announcement_view += "<br/> {} by {} {} published {}: <br/> {} <br/> Like: {} <br/> Love: {} <br/> Angry: {} <br/>".\
# format(a.title,
# a.author.first_name,
# a.author.last_name,
# a.pub_datetime.strftime('%m/%d/%Y, %H:%M %p'),
# a.body,
# like_tally,
# love_tally,
# angry_tally)
# return HttpResponse(announcement_view)
\ 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