{% extends 'base.html' %} {% load static %} {% load humanize %} {% block title %}Dashboard — WildWatch{% endblock %} {% block content %}
{% if user.profile.profile_photo %} {% else %}
{{ user.username|first|upper }}
{% endif %}
Dashboard

Hello, {{ user.first_name|default:user.username }}! 👋

{% with badge=profile.get_badge %} {{ badge.icon }} {{ badge.label }} {% endwith %}
📸
{{ total_uploads }}
Photos Shared
❤️
{{ total_likes }}
Likes Received
🤝
{{ referral_count }}
Referrals
{{ profile.points }}
Total Points

Recent Posts

View All →
{% if recent_posts %}
{% for post in recent_posts %}

{{ post.caption|truncatechars:55 }}

{{ post.get_points_display }}
❤️ {{ post.like_count }}
💬 {{ post.comment_count }}
{% endfor %}
{% else %}
📷

No posts yet. Upload your first photo!

Upload Photo
{% endif %}

Recent Activity

View All →
{% if recent_notifications %}
{% for notif in recent_notifications %} {% if notif.notif_type == 'like' %}❤️{% elif notif.notif_type == 'comment' %}💬{% elif notif.notif_type == 'follow' %}👤{% elif notif.notif_type == 'achievement' %}🏆{% elif notif.notif_type == 'referral' %}🤝{% else %}📣{% endif %}

{{ notif.message }}

{{ notif.created_at|timesince|slice:":8" }}
{% endfor %}
{% else %}

No activity yet. Share a photo to get started!

{% endif %}

Quick Actions

Upload Photo Following Feed My Achievements Saved Posts
🤝 Your Referral Link

Invite friends to WildWatch and earn +3 points for each one who joins!

{{ referral_link }}
WhatsApp

{{ referral_count }} member{{ referral_count|pluralize }} joined via your link

{% if achievements %}

Recent Achievements

All →
{% for ach in achievements %}
{{ ach.title|slice:":2" }} {{ ach.title|slice:"3:" }}
{% endfor %}
{% endif %}
{% endblock %}