{% extends "base.html" %} {% block content %} {% include "partials/flash.html" %}
Public Profile
{{ owner.name | display_name(owner.username) }}
{% with user_link_href = owner_path, user_link_username = owner.username, user_link_label = owner.username, user_link_class = "link-secondary" %} {% include "partials/hover_card_user_link.html" %} {% endwith %}
{% if owner.activity %}
Current activity
{{ owner.activity }}
{% if owner.activity_updated_at %}
Updated {{ owner.activity_updated_at | humantime }}
{% endif %}
{% elif owner.activity_updated_at %}
Current activity
No current activity
Cleared {{ owner.activity_updated_at | humantime }}
{% endif %} {% include "user/ping_card.html" %}
History
Recent activity by {{ owner.username }}
{% if feed_groups | length > 0 %}
{% for group in feed_groups %}
{{ group.label }}
{% for event in group.events %} {% include event.template %} {% endfor %}
{% endfor %}
{% if has_more %} {% endif %} {% else %}
No recent activity found for this user.
{% endif %}
{% endblock %}