{% 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 }})
{% if post.comments %}

{{ post.comments.count() }} Comments

{% else %}

0 Comments

{% endif %}
{% if comments %} {% else %}

No comments yet. Be the first to comment!

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

Log in to leave a comment.

{% endif %}
{% endblock %}