{% extends "site.html" %} {% load smart_if %} {% block content %}
{%if message %}
{{message}}
{%endif%}

{{userProfile.user.username}}'s Profile

{% if userProfile.relationship %} you are friends with this user remove friend {% else %} {%if friendRequestRecieved or friendRequestSent %} {%if friendRequestRecieved %} {{userProfile.user.username}} has sent you a friend request: confirm decline {%endif%} {% if friendRequestSent %} You've sent {{userProfile.user.username}} a friend request {%endif%} {%else%} add this user as a friend {%endif%} {% endif %} send {{userProfile.user.username}} a message
{{userProfile.user.username}}'s profile picture
{% block profileContent %} {% endblock %}
{% endblock %}