{% extends "page.html" %} {% block content %}

Discover Users

Search Users

Users

{% if users %}
{% for user in users %}
{{ user.username }}
Age: {{ (date.today() - user.date_of_birth).days // 365 }}
Country: {{ user.country }}
{% endfor %}
{% else %}

No users found.

{% endif %}
{% endblock %}