{% extends "base.html" %} {% load i18n %} {% load translations %} {% load url from future %} {% block breadcrumbs %}
  • {{ page_profile.get_user_name }}
  • {% endblock %} {% block content %}

    {{ page_profile.get_user_name }}

    {% if enable_avatars %}
    {% endif %}
    {% with page_profile as profile and page_user as user %} {% include 'user-activity.html' %}
    {% endwith %}
    {% if user_projects %}

    {% trans "Projects" %}

    {% for project in user_projects %} {{ project }} {% endfor %}
    {% endif %}

    {% trans "Activity in last 30 days" %}

    {% trans "Activity in last year" %}

    {% include "last-changes.html" %} {% endblock %}