{% extends 'base/base.html' %} {% load static %} {% block title %} {{ object.first_name }} {{ object.last_name }} {% endblock %} {% block body %} {% include 'base/nav-bar.html' %}
{% if user_info.profile_pic %} {% else %} {% endif %}

{{ user_info.user.first_name }} {{ user_info.user.last_name }}

{{ user_info.small_intro }}

{% if user_info.gitHub %} {% endif %} {% if user_info.blog %} {% endif %} {% if user_info.linkedIn %} {% endif %} {% if user_info.googlePlus %} {% endif %} {% if user_info.facebook %} {% endif %} {% if user_info.twitter %} {% endif %}

{{ user_info.user.first_name }} {{ user_info.user.last_name }} {{ user_info.typing_speed }} wpm

{% if user_info.is_mentor %} Mentor, {% endif %} FOSS@Amrita {{ user_info.year }}

{{ user_info.intro }}

{% if user_info.interests %}

Interests

{{ user_info.interests }}

{% endif %} {% if user_info.expertise %}

Expertise

{{ user_info.expertise }}

{% endif %}
{% if teams %}

Teams


{% for team in teams %}

{{ team.name }}

{% endfor %}
{% endif %} {% if projects %}

Projects


{% for project in projects %}

{{ project.title }}

{% endfor %}
{% endif %}
{% include 'base/footer.html' %} {% endblock %}