Fixed html output

parent 6f423673
...@@ -9,21 +9,16 @@ def index(request): ...@@ -9,21 +9,16 @@ def index(request):
return_string = '<body> <ul>' return_string = '<body> <ul>'
for post in ForumPost.objects.all(): for post in ForumPost.objects.all():
post_string = '<li>{} by {} posted {}:<br>{}</li>'.format( return_string += '<li>{} by {} posted {}:<br>{}</li>'.format(
post.title, post.author, post.pub_datetime.strftime('%m/%d/%Y %H:%M %p'), post.body post.title, post.author, post.pub_datetime.strftime('%m/%d/%Y %H:%M %p'), post.body
) )
reply_string =''
for replypost in Reply.objects.all(): for replypost in Reply.objects.all():
if replypost.forum_post == post: if replypost.forum_post == post:
reply_string += '<li>Reply by {} posted {}:<br>{}</li>'.format( return_string += '<li>Reply by {} posted {}:<br>{}</li>'.format(
replypost.author, replypost.pub_datetime.strftime('%m/%d/%Y %H:%M %p'), replypost.body replypost.author, replypost.pub_datetime.strftime('%m/%d/%Y %H:%M %p'), replypost.body
) )
return_string+= post_string
return_string+= reply_string
return_string+='<br>'
return_string += '<br></ul></body>'
return_string += '</ul></body>'
html_string = '<html>{}</html>'.format(return_string) html_string = '<html>{}</html>'.format(return_string)
......
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