{% extends "core/base.jinja" %} {% block title %} {% trans user_name=trombi_user.user.get_display_name() %}{{ user_name }}'s Trombi profile{% endtrans %} {% endblock %} {% block content %}

{% trans user_name=trombi_user.user.get_display_name() %}{{ user_name }}'s Trombi profile{% endtrans %}

{% trans %}Back to tools{% endtrans %}

{% trans %}Pictures{% endtrans %}

{% set profile_file = None %} {% set scrub_file = None %} {% if trombi_user.profile_pict %} {% set profile_file = trombi_user.profile_pict.url %} {% else %} {% set profile_file = static('core/img/na.gif') %} {% endif %} {% if trombi_user.scrub_pict %} {% set scrub_file = trombi_user.scrub_pict.url %} {% else %} {% set scrub_file = static('core/img/na.gif') %} {% endif %}
{{ trombi_user.user.get_short_name() }}
{% if trombi_user.memberships.exists() %}

{% trans %}Club{% endtrans %}

{% for m in trombi_user.memberships.all() %} {% endfor %}
{% trans %}Club{% endtrans %} {% trans %}Role{% endtrans %} {% trans %}Date{% endtrans %}
{{ m.club }} {{ m.role }} {{ m.start }} - {{ m.end }}
{% endif %}
{% for c in trombi_user.received_comments.filter(is_moderated=True) %}
{{ c.author.user.get_display_name() }}
{{ c.content }}
{% endfor %}
{% endblock %}