{% extends "base.html" %} {% load i18n %} {% load translations %} {% block breadcrumbs %}
  • {{ page_profile.get_user_name }}
  • {% endblock %} {% block content %}
    {% if enable_avatars %}
    {% endif %}
    {% with page_profile as profile and page_user as user %} {% include 'user-activity.html' %}
    {% trans "Username" %} {{ user.username }}
    {% trans "Name" %} {{ page_profile.get_user_name }}
    {% endwith %}
    {% if user_projects %}

    {% trans "Projects" %}

    {% for project in user_projects %} {{ project }} {% endfor %}
    {% endif %} {% include "activity-tab.html" %}

    {% trans "Recent changes" %}

    {% include "last-changes-content.html" %} {% trans "Browse all changes for user" %} {% endblock %}