{% extends "base.html" %} {% block title %}{{ group.name }} - Post by {{ post.author.username }}{% endblock %} {% block content %}
{{ post.content|safe }}
{{ post.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
Comments:
{% for comment in post.comments %} {% include 'comment.html' %} {% endfor %}