{% extends 'base.html' %}{% comment %}TEAM MEMBER PROFILE PAGE{% endcomment %} {% load i18n %} {% load thumbnail %} {% block page-seo %} {{ user.first_name }} {{ user.last_name }} | {% trans "Gordini Ambassadors" %} {% if request.REGION_CODE == 'ca' %} {% else %} {% endif %} {% endblock %} {% block body-id %}team-profile{% endblock %} {% block shop-menu %} {% endblock shop-menu %} {% block content %}

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

{% if user.discipline %}

{{ user.discipline }}

{% endif %}
{% thumbnail user.thumbnail "200" as im %} Profile picture {% endthumbnail %} {% if user.hometown_fr %}

{% trans "Hometown" %}

{{ user.hometown_fr }}

{% endif %} {% if user.home_mountain_fr %}

{% trans "Home mountain" %}

{{ user.home_mountain_fr }}

{% endif %} {% if user.bio_fr %}

{% trans "A bit about myself" %}

{{ user.bio_fr }}

{% endif %} {% if user.greatest_accomplishment_fr %}

{% trans "One of my greatest accomplishments" %}

{{ user.greatest_accomplishment_fr|safe }}

{% endif %} {% if user.favourite_place_fr %}

{% trans "The best kept secret about my home mountain" %}

{{ user.favourite_place_fr }} {% endif %} {% if user.shout_outs_fr %}

{% trans "My own words of wisdom" %}

{{ user.shout_outs_fr }} {% endif %}

{% endblock content %} {% block page-scripts %}{% endblock %}