Commit f0ec44c0 authored by Norberto Tadeo's avatar Norberto Tadeo 😔

changed some lines in views.py for better readability

parent 1eb7d824
......@@ -13,7 +13,10 @@ def displayForumPosts(request):
P_body = Post.post_body
P_pub_date = Post.pub_date
PostThread = ("<br><font size='+1.5'> '<b>" + P_title + "</b>' by <i>" + str(Post.author.first_name) + " " + str(Post.author.last_name) + "</i> dated " + str(P_pub_date) + ": <br>" + P_body + "</font>")
PostThread = (
"<br><font size='+1.5'> '<b>" + P_title + "</b>' by <i>" + str(Post.author.first_name) + " " +
str(Post.author.last_name) + "</i> dated " + str(P_pub_date) + ": <br>" + P_body + "</font>"
)
output += PostThread + ""
for Reply in ForumReplies:
......@@ -23,8 +26,9 @@ def displayForumPosts(request):
if ReplytoPost == P_title and R_body != NULL:
ReplyThread = (
"<br> Reply by <i>" + str(Reply.author.first_name) + " " + str(Reply.author.last_name) + "</i> dated " + str(R_pub_date) + ": <br>" +
R_body )
"<br> Reply by <i>" + str(Reply.author.first_name) + " " + str(Reply.author.last_name) +
"</i> dated " + str(R_pub_date) + ": <br>" + R_body
)
output += ReplyThread + ""
output += "<br>"
return HttpResponse('<h1>FORUM POSTS: </h1>' + output )
\ No newline at end of file
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