{% extends 'base.html' %} {% block title %}Following Feed — WildWatch{% endblock %} {% block content %}

👥 Following Feed

Posts from people you follow

{% if posts %}
{% for post in posts %}
{{ post.caption|truncatechars:60 }}

{{ post.caption }}

{% for comment in post.comments.all|slice:":3" %}
{{ comment.author.username|first|upper }}
{{ comment.author.username }}
{{ comment.content }}
{{ comment.created_at|timesince }} ago
{% empty %}

No comments yet.

{% endfor %}
{% csrf_token %}
{% endfor %}
{% else %}
👥

Your following feed is empty

Follow other members to see their posts here.

Discover People
{% endif %}
{% endblock %}