{% extends 'layout.html' %} {% block content %}
{% for post in posts %}
{{ post.poster }} at {{ post.timePosted.strftime('%Y-%m-%d %-H:%M') }} {% if logged_in == post.poster %} {% endif %}
{{ post.content }}
{% endfor %}
Replying to {{ reply_to.poster }} at {{ reply_to.timePosted.strftime('%Y-%m-%d %-H:%M') }}
{{ reply_to.content }}
{% endblock %}