{% extends "layout.html" %} {% import "event.html" as eventutil with context %} {% block title %} {{user.canonical_name}} {% endblock %} {% block content %}

{{user.canonical_name}}

{% if user.location %}

{{user.location}}

{% endif %} {% if user.url %}

{{user.url}}

{% endif %} {% if user.bio %}

{{user.bio | md}}

{% endif %}

{% if search_error %}
{{ search_error }}
{% endif %}
{% for project in projects %}

{% if project.visibility.value != 'public' %} {{project.visibility.value}} {% endif %} {{project.name}}

{{project.description}}

{% endfor %}

Activity

{% for event in events %} {{ eventutil.event(event, project=True) }} {% endfor %} {{pagination()}}
{% endblock %}