{% extends "base.html" %} {% load i18n %} {% block title %}{{ profile_user.username }}'s Profile - RaktaPulse{% endblock %} {% block content %}
{% if profile.profile_pic %} {{ profile_user.username }} {% else %}
{% endif %}

{{ profile_user.first_name }} {{ profile_user.last_name }}

@{{ profile_user.username }}

{% if donor %}
{{ donor.blood_group }} {% if donor.is_available %} Available {% else %} Not Available {% endif %}
{% endif %}
Location

{{ profile.location|default:"Not specified" }}

Member Since

{{ profile_user.date_joined|date:"F Y" }}

About
{{ profile.bio|default:"No bio provided."|linebreaks }}
Impact & Reliability
{{ donations_made.count }}
Volunteered
{{ completed_donations_count }}
Successful
{% if donations_made %}
Recent Donations
{% for donation in donations_made|slice:":5" %}
Donated to {{ donation.request.patient_name }}
{{ donation.request.hospital }} | {{ donation.date|date:"M d, Y" }}
{% if donation.is_completed %} Verified {% else %} Pending {% endif %}
{% endfor %}
{% endif %}
{% if user.is_authenticated and user != profile_user %} Send Message {% endif %} Back to Donors
{% endblock %}