{% extends "base.html" %} {% block title %}{{ display_name }} — {{ community_name }} — Multithreaded{% endblock %} {% block head %}{% endblock %} {% block header %}{% include "partials/site_header.html" %}{% endblock %} {% block content %}
{% if let Some(url) = avatar_url %} {{ username }} {% else %}
{{ username.chars().next().unwrap_or('?').to_uppercase().next().unwrap_or('?') }}
{% endif %}

{{ display_name }}

@{{ username }} {{ role }}
Joined {{ joined }} · {{ post_count }} post{% if post_count != 1 %}s{% endif %} · {{ endorsement_count }} endorsement{% if endorsement_count != 1 %}s{% endif %} received

Recent Activity

{% if activity.is_empty() %}
No activity yet.
{% else %} {% for a in activity %} {% endfor %}
Thread Type When
{{ a.thread_title }} in {{ a.category_name }} {% if a.is_thread_author %}started{% else %}replied{% endif %} {{ a.timestamp }}
{% endif %}
{% endblock %}