${c.post.title}
Posted by ${c.post.user.nick} on ${c.post.created.strftime('%B %d, %Y')}
<%include file="/flash.mako"/>
${h.literal(c.post.body)}
% if len(c.post.comments) == 0:
No Responses
% elif len(c.post.comments) == 1:One Response
% else:${len(c.post.comments)} Responses
% endif % if len(c.post.comments) > 0:-
% for num, comment in enumerate(c.post.comments):
-
${comment.title}${comment.body}
% endfor
Leave a Reply
% if not c.current_user:You must be logged in to post a comment.
% else: % endif % endif