{% extends "cosinnus/base.html" %} {% load i18n static cosinnus_tags djajax_tags %} {% block page_title %} {% blocktrans with username=this_user|full_name %}User profile: {{ username }}{% endblocktrans %}{{ block.super }} {% endblock %} {% block main_page %} {% if SETTINGS.DEBUG and not user|cosinnus_setting:"test_msg" %}

This message will never reappear when you remove it.

{% endif %}
{% include 'cosinnus/messages.html' %}
{% include "cosinnus/user/user_avatar_image.html" with user=this_user extra_classes="w100" image_size="large" %}
{{ this_user.cosinnus_profile.get_extended_full_name }} {% if request.user.is_authenticated and request.user == this_user and not SETTINGS.COSINNUS_IS_INTEGRATED_PORTAL %} {% if not SETTINGS.COSINNUS_IS_SSO_PORTAL %} {% endif %} {% if SETTINGS.COSINNUS_IS_SSO_PORTAL %} {% endif %} {% else %} {% comment %} Abonnieren is out for now {% endcomment %} {% if not SETTINGS.COSINNUS_IS_INTEGRATED_PORTAL %} {% endif %} {% include 'cosinnus/feedback/report_button_btn.html' with object=this_user %} {% endif %}
  • {% trans "About me" %}
{% block userprofile_content %} {% if profile.description %}
{{ profile.description|textfield }}
{% endif %} {% if profile.website %} {% trans "My Website" %}

{{ profile.website }}

{% endif %} {% include "cosinnus/media_tags_userprofile_readonly.html" with object=profile %} {% endblock userprofile_content %}
  • {% trans "My Groups" %}
{% with groups=profile.cosinnus_societies %} {% for group in groups %} {% endfor %} {% endwith %} {% comment %} Mehr button is hidden till we can load more results {% endcomment %}
  • {% trans "My Projects" %}
{% with projects=profile.cosinnus_projects %} {% for group in projects %} {% endfor %} {% endwith %} {% comment %} Mehr button is hidden till we can load more results {% endcomment %}
{% comment %} My Network widget deactivated instead of placeholder
  • {% trans "My Network" %}
{% endcomment %}
{% endblock main_page %} {% block extrafooter %} {{ block.super }} {% djajax generate %} {% endblock extrafooter %}