{% 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 current_user and user.id == current_user.id %} Create new project {{icon("caret-right")}} Edit your profile {{icon("caret-right")}} {% endif %}
{% if projects and page == 1 %}
{% if search_error %}
{{ search_error }}
{% endif %}
{% for project in projects %}

{% if project.visibility.value != 'PUBLIC' %} {{project.visibility.value.lower()}} {% endif %} {{project.name}}

{{project.description}}

{% if project.tags %}
{% for tag in project.tags %} #{{tag}} {% endfor %}
{% endif %}
{% endfor %}
{% endif %}

Activity

{% for event in events %} {{ eventutil.event(event, project=True) }} {% endfor %} {{pagination()}} {% if not(events) %}
No activity for this user.
{% endif %}
{% endblock %}