{% extends 'base.html' %} {% load static %} {% block title %}{{ post.author.username }}'s Post — WildWatch{% endblock %} {% block content %}
Back to Feed
{{ post.caption|truncatechars:60 }}

{{ post.caption }}

{% if user.is_authenticated %} {% else %} {% endif %} {{ post.comment_count }}
Comments ({{ post.comment_count }})
{% for comment in comments %}
{% if comment.author.profile.profile_photo %} {% else %}
{{ comment.author.username|first|upper }}
{% endif %}
{{ comment.content }}
{{ comment.created_at|date:"M d, Y" }}
{% empty %}

No comments yet. Start the conversation!

{% endfor %}
{% if user.is_authenticated %}
{% csrf_token %}
{% else %}

Log in to leave a comment

{% endif %}
{% endblock %}