{% extends theme('layouts/1-column.html') %} {% from theme('macros/follow.html') import follow_btn with context %} {% set bundle = 'user' %} {% set meta = { 'title': user.fullname, 'description': _("%(site)s %(username)s profile", site=config['SITE_TITLE'], username=user.fullname), 'keywords': [_('user'), _('profile')], 'robots': 'noindex', } %} {% block breadcrumb %}
  • {{ _('Users') }}
  • {{ user.fullname }}
  • {% endblock %} {% block toolbar %} {% if can_edit %}
    {{ _('Edit') }}
    {% endif %} {# Social actions #} {% if current_user != user %}
    {{ follow_btn(user) }}
    {% endif %} {% endblock %} {% block main_content %}

    {{ _('Work in progress') }}

    {{ _('The user page is currently being renovated to improve user experience.') }}

    {% block user_content %}{% endblock %}
    {% endblock %}