{% extends "base.html" %} {% load static %} {% block title %}Profile{% endblock %} {% block content %}
{% if profile.profile_picture %} Profile Picture {% endif %}

{{ profile.first_name }} {{ profile.last_name }}

{% if profile.user.is_expert %}
Academic Field: {{ profile.get_academic_field_display }}

Followers

{% for following in profile.followed_by.all %} @{{ following }}
{% endfor %}
{% csrf_token %} {% if profile in user.profile.follows.all %} {% else %} {% endif %}
{% endif %}
{{ profile.bio|linebreaksbr }}
{% if profile.github_url or profile.linkedin_url %} {% endif %}

Follows

{% for follow in profile.follows.all %} @{{ follow }}
{% endfor %} Message {{ profile.user.username }}
{% endblock %}