Commit a0c586b4 authored by Andre Dalwin C. Tan's avatar Andre Dalwin C. Tan 💬

modified models and views to remove any references between ForumPost and Reply model.

parent 030df003
......@@ -22,16 +22,13 @@ def forum(request):
post.pub_datetime.strftime("%m/%d/%Y, %I:%M %p"),
post.body,
)
# Check if reply is for that specific forum_post
for reply in replies:
if reply.forum == post:
forum_view += '''
Reply by {} posted {}: <br>
{} <br>
'''.format(
reply.author,
reply.pub_datetime.strftime("%m/%d/%Y, %I:%M %p"),
reply.body
)
forum_view += "<br>"
for reply in replies:
forum_view += '''
Reply by {} posted {}: <br>
{} <br>
'''.format(
reply.author,
reply.pub_datetime.strftime("%m/%d/%Y, %I:%M %p"),
reply.body
)
return HttpResponse(forum_view)
\ 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