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

🔥 Trending Posts

The most liked and discussed photos in our community

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

{{ post.caption }}

{% if user.is_authenticated %} {% else %} {% 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 user.is_authenticated %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% else %}
🔥

No trending posts yet

Be the first to share a photo and start a trend!

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