{% extends 'page.html' %} {% set user = c.user %} {% block breadcrumb_content %}
  • {% link_for _('User'), 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 %}
  • {% link_for _('Edit'), controller='user', action='edit', id=user.name %}
  • {% endblock %} {% block actions_content %} {% snippet 'user/snippets/back_to_user_action.html', user=user %} {% endblock %} {% block primary_content %}
    {{ c.form | safe }}
    {% endblock %} {% block secondary_content %}

    {{ _('Account Info') }}

    {% trans %} Your profile lets other CKAN users know about who you are and what you do. {% endtrans %}
    {% endblock %}