{% extends 'base.html' %} {% load i18n %} {% load url from grandchallenge_tags %} {% block title %}{% blocktrans with profile.user.username as username %} {{ username }}'s profile. {% endblocktrans %}{% endblock %} {% block content_title %}

{{ profile.user.username }} {% if profile.user.get_full_name %}( {{ profile.user.get_full_name }} ){% endif %}

{% endblock %} {% block content %}

User details

{% block profile_details %}
{% trans
{% block profile_definition_list %}
{% trans "Username" %}
{{ profile.user.username }}
{% if profile.user.get_full_name %}
{% trans "Name" %}
{{ profile.user.get_full_name }}
{% endif %} {% if profile.institution %}
{% trans "Institution" %}
{{ profile.institution }}
{% endif %} {% if profile.department %}
{% trans "Department" %}
{{ profile.department }}
{% endif %} {% if profile.website %}
{% trans "Website" %}
{{ profile.website|urlize }}
{% endif %} {% if profile.location %}
{% trans "Location" %}
{{ profile.location }}
{% endif %} {% if profile.about_me %}
{% trans "About me" %}
{{ profile.about_me }}
{% endif %} {% endblock %}

Challenges

{{ profile.user.username }} is participating in:

    {% for challenge in profile.get_challenges_as_participant %}
  • {{ challenge.short_name }}
  • {% empty %}

    no challenges yet!

    {% endfor %}
{% block profile_navigation %} {% comment %}Dirty hack. Will use django-guardian in the future.{% endcomment %} {% if user.username == profile.user.username %}

Settings

{% endif %} {% endblock %}
{% endblock %}
{% endblock %}