Commit 7c265b3a authored by Jiuvi Anne Hu's avatar Jiuvi Anne Hu

Update views.py

parent 21c92230
...@@ -19,12 +19,12 @@ def index(request): ...@@ -19,12 +19,12 @@ def index(request):
html_string_2 = "" html_string_2 = ""
for announced in Announcement.objects.all(): for announced in Announcement.objects.all():
html_string_2 += "{} by {} {} published {}<br />:\ html_string_2 += "{} by {} {} published {}:\
{}".format(announced.title, announced.author.first_name, {}".format(announced.title, announced.author.first_name,
announced.author.last_name, announced.author.last_name,
convert_to_localtime(announced.pub_datetime), announced.body) convert_to_localtime(announced.pub_datetime), announced.body)
for reacts in announced.reaction.all(): for reacts in announced.reaction.all():
html_string_2 += "{}: {}".format(reacts.name, reacts.tally) html_string_2 += "{}: {}<br />".format(reacts.name, reacts.tally)
html_string_final = html_string_1 + html_string_2 + "</html>" html_string_final = html_string_1 + html_string_2 + "</html>"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment