{% extends "layout.html" %} {% block title %}{{ user.username }}'s Profile - Community Forum{% endblock %} {% block breadcrumb %} Home / Profile: {{ user.username }} {% endblock %} {% block content %}

User Profile

{{ user.username }}

{{ user.username }}

{% if user.role == 'admin' %} Administrator {% elif user.role == 'moderator' %} Moderator {% else %} Member {% endif %}
Joined {{ user.created_at.strftime('%B %d, %Y') }}
Last seen {{ user.last_seen.strftime('%B %d, %Y') }}
{% if user.location %}
{{ user.location }}
{% endif %} {% if user.website %} {% endif %}
{% if user.bio %}

About

{{ user.bio }}

{% endif %} {% if user.signature %}

Signature

{{ user.signature }}

{% endif %} {% if current_user.is_authenticated and current_user.id == user.id %} {% endif %}

Topics Started

{{ topics.total }} total
{% if topics.items %} {% if topics.pages > 1 %}
{% endif %} {% else %}
This user hasn't created any topics yet.
{% endif %}

Recent Posts

{% if recent_posts %}
{% for post in recent_posts %}
{{ post.created_at.strftime('%b %d, %Y %H:%M') }}
{{ post.content|striptags|truncate(150) }}
{% endfor %}
{% if current_user.id == user.id %} {% endif %} {% else %}
This user hasn't made any posts yet.
{% endif %}
{% endblock %}