{% extends 'base.html' %} {% block title %}Friend{% endblock %} {% load static %} {% block content %}
{% include 'snippets/left-menu.html' %}
{% if account.username == request.user.username %}
{% else %} {% endif %}



Omotosho Micheal ({{ account.username }})

{% if is_myfriend %} {% else %} {% if request_sent == -1 %} Send Friend Request {% elif request_sent == 0 and pending_friend_request_id %} {% elif request_sent == 1 %} Cancel {% endif %} {% endif %}
{% if account.hide_email %}

Email: {{ account.email }}

{% else %}

Email: **********

{% endif %} {% if friends|length == 0 or friends|length == 1 %}
{{ friends|length }} friend
{% else %}
{{ friends|length }} friends
{% endif %} {% if account.username == request.user.username %} {% endif %}
{% include 'message_app/create_or_return_private_chat.html' %} {% endblock %}