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

{{ user }}

{% if profile.get("location") %}

{{profile["location"]}}

{% endif %} {% if profile.get("url") %}

{{profile["url"]}}

{% endif %} {% if profile.get("bio") %}

{{profile["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 %}