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

{{ profile_user.get_full_name|default:profile_user.username }}

@{{ profile_user.username }}

{% if profile.bio %}

{{ profile.bio }}

{% endif %}
{{ badge.icon }} {{ badge.label }} Joined {{ profile.joined_date|date:"F Y" }}
{{ total_uploads }}
Posts
{{ followers_count }}
Followers
{{ following_count }}
Following
{{ profile.points }}
Points
{% if user == profile_user %} Edit Profile {% elif user.is_authenticated %} {% endif %}
{% if posts %}

📸 Photos

{{ total_uploads }} post{{ total_uploads|pluralize }}
{% else %}
📷

{% if user == profile_user %}No posts yet{% else %}{{ profile_user.username }} hasn't posted yet{% endif %}

{% if user == profile_user %} Upload First Photo {% endif %}
{% endif %}
{% if achievements %}

🏅 Achievements

{% for ach in achievements %}
{{ ach.title|slice:":2" }}
{{ ach.title|slice:"3:" }}
{{ ach.description }}
{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}