{% extends 'base.html' %} {% load static %} {% block title %}Community Feed — WildWatch{% endblock %} {% block content %}

🌿 Community Feed

Photos shared by our conservation community

All Posts 🦋 Wildlife 🌿 Scenic 🗑️ Cleanup {% if user.is_authenticated %} 👥 Following {% endif %}
{% if current_category %}{% endif %}
{% if posts %}
{% for post in posts %}
{{ post.caption|truncatechars:60 }} {{ post.get_points_display }}

{{ post.caption }}

{% if user.is_authenticated %} {% else %} {% endif %} {% if user.is_authenticated %} {% endif %}
{% for comment in post.comments.all|slice:":3" %}
{% if comment.author.profile.profile_photo %} {% else %}
{{ comment.author.username|first|upper }}
{% endif %}
{{ comment.author.username }}
{{ comment.content }}
{{ comment.created_at|timesince }} ago
{% empty %}

No comments yet.

{% endfor %} {% if post.comment_count > 3 %} View all {{ post.comment_count }} comments → {% endif %}
{% if user.is_authenticated %}
{% csrf_token %}
{% else %}

Log in to comment

{% endif %}
{% endfor %}
{% else %}
🌿

{% if query %}No results for "{{ query }}"{% elif current_category %}No posts in this category yet{% else %}No posts yet{% endif %}

{% if user.is_authenticated %} Upload First Photo {% else %} Join WildWatch {% endif %}
{% endif %}
{% endblock %}