{% extends 'layouts/index.html' %} {% block content %}
{% for user_row in users|batch(2) %}
{% for user in user_row %}
{{ user.name }} {% 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

{{ user.display_about() }}

{% endfor %}
{% endfor %}
{% endblock %}