{% extends "social/base.html" %}
{% from "macros/box.html" import m_box %}
{% from "macros/activity.html" import m_activities %}
{% block content %}
{% call m_box(_("Profile")) %}
{{ view_form.communautes.view_widget.render_view(view_form.communautes)|safe }}
{%- endif %}{{ _("Joined on:") }} {{ user.created_at|date_age }}.
{{ _("Latest connection:") }} {%- if user.last_active %} {{ user.last_active|date_age }}. {%- else %} {{ _("Never") }}. {%- endif %}
{% endcall %} {% call m_box(_("Recent activities")) %} {{ m_activities(activity_entries) }} {% endcall %} {% endblock %}