{% extends "base.html" %} {% block title %}{{ user.display_name or user.username }}'s Profile - {{ config.BBS_NAME }}{% endblock %} {% block content %}
{% if avatar %} Avatar {% else %} {% endif %}

{{ user.display_name or user.username }}

{% if user.display_name %}

@{{ user.username }}

{% endif %} {% if online %} Online {% else %} Offline {% endif %} {% if user.is_admin %}
Admin
{% endif %}
Info
{% if user.location %}

{{ user.location }}

{% endif %} {% if user.website %}

{{ user.website }}

{% endif %} {% if user.show_email %}

{{ user.email }}

{% endif %}

Joined {{ user.created_at.strftime('%Y-%m-%d') }}

{% if user.last_login %}

Last login {{ user.last_login.strftime('%Y-%m-%d') }}

{% endif %}
Stats

Posts: {{ stats.total_posts }}

Replies: {{ stats.total_replies }}

Member for: {{ stats.account_age }} days

{% if current_user.is_authenticated and current_user.username == user.username %} {% elif current_user.is_authenticated %} {% endif %}
{% if user.bio %}
About

{{ user.bio }}

{% endif %} {% if user.signature %}
Signature
{{ user.signature }}
{% endif %} {% if groups %} {% endif %} {% if achievements %}
Achievements ({{ achievements|length }})
{% for a in achievements %}
{{ a.name }}
{{ a.description }}
earned {{ a.earned_at.strftime('%Y-%m-%d') }}
{% endfor %}
{% endif %}
Recent Posts
{% if recent_posts %} {% else %}

No posts yet.

{% endif %}
{% endblock %}