{% extends "base.html" %} {% block content %}
profile: {{ profile_user.username }}
{{ profile_user.username }}
{% if let Some(bio) = profile_user.bio %}
{{ bio }}
{% endif %}
joined {{ profile_user.created_at }} · role: {{ profile_user.role }}
{% if !threads.is_empty() %}
threads by {{ profile_user.username }}
{% for twa in threads %}
{{ twa.thread.title }}
{{ twa.thread.created_at }}
{% endfor %} {% else %}
no threads yet
{% endif %} {% endblock %}