{% extends 'layouts/index.html' %} {% block content %}
{{ user.name }} {% if current_user.is_admin or current_user == user %} {% endif %} {% with seen_text = user.get_last_seen_text() %} {% if seen_text == 'Online now!' %} {{ seen_text }} {% else %} {{ seen_text }} {% endif %} {% endwith %}
{{ user.username }}'s Profile Picture
Registered {{ user.get_registration_delta() }} ago
{% with like_count = user.get_post_likes() %} {{ like_count }} like{{ like_count|pluralize }}
{% endwith %} {% with post_count = user.get_post_count() %} {{ post_count }} post{{ post_count|pluralize }}
{% endwith %}

About me:
{{ user.display_about() }}

{% endblock %}