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