{% extends "base.html" %} {% block title %}{{ profile_user.full_name }} — {{ settings.APP_NAME }}{% endblock %} {% block content %}
{{ profile_user.full_name[0] }}

{{ profile_user.full_name }} {% if profile_user.is_verified %}{% endif %}

{% if profile_user.primary_affiliation %}
{{ profile_user.primary_affiliation.designation }}, {{ profile_user.primary_affiliation.institution }} {% if profile_user.primary_affiliation.department %} — {{ profile_user.primary_affiliation.department }}{% endif %}
{% endif %} {% if profile_user.field %}
{{ profile_user.field.name }}
{% endif %} {% if profile_user.bio %}

{{ profile_user.bio }}

{% endif %}
{{ pubs_count }} Publications {{ questions_count }} Questions
Joined {{ profile_user.created_at.strftime('%B %Y') }}
{% if profile_user.affiliations|length > 1 %}

Affiliations

{% for aff in profile_user.affiliations %}
{{ aff.designation }} at {{ aff.institution }} {% if aff.department %}{{ aff.department }}{% endif %} {% if aff.start_year %} {{ aff.start_year }}{% if aff.end_year %} – {{ aff.end_year }}{% else %} – present{% endif %} {% endif %}
{% endfor %}
{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}