{% extends "page.html" %} {% set user = c.user_dict %} {% block title %}{{ user.display_name }} - {{ super() }}{% endblock %} {% block breadcrumb_content %}
  • {% link_for _('Users'), controller='user', action='index' %}
  • {% with title = _('Your Profile') if c.is_myself else user.display_name %}
  • {% link_for title|truncate(35), controller='user', action='read', id=user.name %}
  • {% endwith %} {% endblock %} {% block actions_content %} {% if h.check_access('user_update', user) %}
  • {% link_for _('Edit'), controller='user', action='edit', id=user.name, class_='btn', icon='cog' %}
  • {% endif %} {% endblock %} {% block primary_content %}
    {{ h.linked_gravatar(user.email_hash, 150) }}

    {{ user.fullname or _('No full name provided') }}

    {% if user.about_formatted %} {{ user.about_formatted }} {% else %}

    {% if c.is_myself %} {% trans %}You have not provided a biography.{% endtrans %} {% else %} {% trans %}This user has no biography.{% endtrans %} {% endif %}

    {% endif %}

    {{ _('Datasets') }}

    {% snippet 'snippets/package_list.html', packages=user.datasets %}

    {{ _('Activity Stream') }}

    {{ c.user_activity_stream | safe }}
    {% endblock %} {% block secondary_content %} {% snippet 'user/snippets/user_search.html' %} {% endblock %}