{% extends 'base.html' %} {% load i18n %} {% load url %} {% load guardian_tags %} {% load meta_attr %} {% load evaluation_extras %} {% load humanize %} {% load profiles %} {% 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 breadcrumbs %} {% endblock %} {% block content %}
{% block profile_details %}
{% trans
{% if profile.user.get_full_name %}

{{ profile.user.get_full_name }}

{{ profile.user.username }}

{% else %}

{{ profile.user.username }}

{% endif %} {% if profile.user.verification.is_verified %} {% endif %} {% get_obj_perms request.user for profile as "profile_perms" %} {% if "change_userprofile" in profile_perms %} {% endif %}
    {% if profile.country %}
  •  {{ profile.country.name }}
  • {% endif %} {% if profile.institution %}
  •  {{ profile.institution }}
  • {% endif %} {% if profile.department %}
  •  {{ profile.department }}
  • {% endif %} {% if profile.website %}
  •  Website
  • {% endif %}
{% if profile.display_organizations and organizations %}
Organizations
    {% for organization in organizations %} {{ organization }} Logo {% endfor %}
{% endif %}
Statistics
  • Member for {{ profile.user.date_joined|timesince }}
  • {% if num_submissions %}
  • {{ num_submissions }} challenge submissions
  • {% endif %} {% if num_algorithms_run %}
  • {{ num_algorithms_run }} algorithms run
  • {% endif %}

Activity Overview

{% for object in object_list %}
{% if object.logo %} {{ object }} Logo {% endif %}
{% firstof object.title object.short_name %} {% if not object.public %} {% endif %}
{{ object|meta_attr:'verbose_name'|title }} {{ object_role|get_key:object|title }}

{{ object.description }}

{% endfor %}
{% endblock %}
{% endblock %}