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
John Tamano
widget_group22
Commits
9af29825
Commit
9af29825
authored
May 08, 2022
by
Julliana Zarah C. Cruz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added templates and html to the announcements app
parent
1f97f1bd
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
27 additions
and
23 deletions
+27
-23
urls.py
widget_group22/announcements/urls.py
+2
-1
views.py
widget_group22/announcements/views.py
+25
-22
No files found.
widget_group22/announcements/urls.py
View file @
9af29825
from
django.urls
import
path
from
django.urls
import
path
from
.views
import
announcements
from
.views
import
announcements
,
details
urlpatterns
=
[
urlpatterns
=
[
path
(
''
,
announcements
,
name
=
'announcements'
),
path
(
''
,
announcements
,
name
=
'announcements'
),
path
(
'announcements/<int:announcement_id>/details/'
,
details
,
name
=
'details'
)
]
]
app_name
=
"announcements"
app_name
=
"announcements"
widget_group22/announcements/views.py
View file @
9af29825
...
@@ -7,26 +7,29 @@ def index(request):
...
@@ -7,26 +7,29 @@ def index(request):
return
HttpResponse
(
'This is the Announcement Board!'
)
return
HttpResponse
(
'This is the Announcement Board!'
)
def
announcements
(
request
):
def
announcements
(
request
):
all_announcements
=
models
.
Announcement
.
objects
.
all
()
all_announcements
=
models
.
Announcement
.
objects
.
order_by
(
"pub_date"
)
all_reactions
=
models
.
Reaction
.
objects
.
all
()
context
=
{
"all_announcements"
:
all_announcements
}
return
render
(
request
,
'announcements/announcements.html'
,
context
)
final_output
=
''
def
details
(
request
,
announcement_id
):
announcement_details
=
models
.
Announcement
.
objects
.
get
(
pk
=
announcement_id
)
for
i
in
all_announcements
:
reactions
=
models
.
Reaction
.
objects
.
filter
(
announcement
=
announcement_details
)
title
=
i
.
announcement_title
like
=
0
body
=
i
.
announcement_body
love
=
0
date
=
str
(
i
.
pub_date
)
angry
=
0
last_name
=
i
.
author
.
last_name
for
reaction
in
reactions
:
first_name
=
i
.
author
.
first_name
if
reaction
.
reaction_name
==
"Like"
:
like_tally
=
str
(
Reaction
.
objects
.
get
(
reaction_name
=
'Like'
,
announcement
=
i
)
.
get_tally
())
like
=
reaction
.
tally
love_tally
=
str
(
Reaction
.
objects
.
get
(
reaction_name
=
'Love'
,
announcement
=
i
)
.
get_tally
())
elif
reaction
.
reaction_name
==
"Love"
:
angry_tally
=
str
(
Reaction
.
objects
.
get
(
reaction_name
=
'Angry'
,
announcement
=
i
)
.
get_tally
())
love
=
reaction
.
tally
else
:
output
=
(
title
+
' by '
+
first_name
+
' '
+
last_name
+
' dated '
+
date
+
':<br>'
angry
=
reaction
.
tally
+
body
+
'<br>'
context
=
{
+
'Like: '
+
like_tally
+
'<br>'
"announcement_details"
:
announcement_details
,
+
'Love: '
+
love_tally
+
'<br>'
"like"
:
like
,
+
'Angry: '
+
angry_tally
)
"love"
:
love
,
"angry"
:
angry
,
final_output
+=
output
+
'<br><br>'
}
return
HttpResponse
(
'<h1>ANNOUNCEMENTS: </h1>'
+
final_outpu
t
)
return
render
(
request
,
"announcements/details.html"
,
contex
t
)
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