Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
midterm_nicsbabes
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
Nics De Vega
midterm_nicsbabes
Commits
a4cbb052
Commit
a4cbb052
authored
Mar 06, 2023
by
Nics De Vega
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
edited url views for app announcement_board
parent
6f2412e0
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
2 deletions
+25
-2
views.py
widget_nicsbabes/announcement_board/views.py
+25
-2
No files found.
widget_nicsbabes/announcement_board/views.py
View file @
a4cbb052
from
django.shortcuts
import
render
from
django.http
import
HttpResponse
from
.models
import
Announcement
,
Reaction
from
dashboard.models
import
WidgetUser
def
index
(
request
):
return
HttpResponse
(
'Hello! This is the Announcement Board!'
)
return_string
=
'<body>'
for
announcement
in
Announcement
.
objects
.
all
():
announcement_heading
=
'{} by {} {} published {}:<br>'
.
format
(
announcement
.
title
,
announcement
.
author
.
first_name
,
announcement
.
author
.
last_name
,
announcement
.
pub_datetime
.
strftime
(
"
%
m/
%
d/
%
Y,
%
I:
%
M
%
p"
)
)
announcement_body
=
'{}<br>'
.
format
(
announcement
.
body
)
announcement_reactions
=
''
announcement_reactions
+=
'Like: {}<br>'
.
format
(
Reaction
.
objects
.
get
(
announcement
=
announcement
,
name
=
'Like'
)
.
tally
)
announcement_reactions
+=
'Love: {}<br>'
.
format
(
Reaction
.
objects
.
get
(
announcement
=
announcement
,
name
=
'Love'
)
.
tally
)
announcement_reactions
+=
'Angry: {}<br>'
.
format
(
Reaction
.
objects
.
get
(
announcement
=
announcement
,
name
=
'Angry'
)
.
tally
)
return_string
+=
announcement_heading
+
announcement_body
+
announcement_reactions
+
'<br>'
html_string
=
'<html>{}</html>'
.
format
(
return_string
)
return
HttpResponse
(
'Widget’s Announcement Board<br><br>Announcements:<br>'
+
html_string
)
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