{% extends 'base.html' %} {% block content %}

{{ post.post_name }}

Created by {{ post.created_by }} - {{ post.creation_date.strftime('%Y-%m-%d %H:%M') }}


{{ post.text }}

{% for media in post.media %}
Media
{% endfor %}
Upvote ({{ post.upvotes }}) Downvote ({{ post.downvotes }})

{{ comment_count }} Comments

{% if comments %}
{% else %}

No comments yet. Be the first to comment!

{% endif %} {% if g.user %}

Add a Comment

{% else %}

Log in to leave a comment.

{% endif %}
{% endblock %}