{% extends "layout.html" %} {% block body %}

{{ user }}

{% if user.location %}

{{user.location}}

{% endif %} {% if user.url %}

{{user.url}}

{% endif %} {% if user.bio %}

{{user.bio | md}}

{% endif %}
{% if len(trackers) > 0 %}
{% for tracker in trackers %}

{{ user }}/{{ tracker.name }}

Last active {{ tracker.updated | date }}
{% endfor %}
{% else %} {% if search %}

Nothing found.

{% else %}

This user has no trackers.

{% endif %} {% endif %} {{pagination()}}
{% endblock %}