{% extends "base.html" %} {% block title %}SneakySwole — Home{% endblock %} {% block content %}

SneakySwole

Your open-source workout tracker

{% if profiles %}

Select Profile

{% for profile in profiles %}
{{ profile.display_name }}
{% if profile.height or profile.weight %}

{% if profile.height %}Height: {{ profile.height }}{% endif %} {% if profile.height and profile.weight %} · {% endif %} {% if profile.weight %}Weight: {{ profile.weight }}{% endif %}

{% endif %}
{% endfor %}
{% else %}

No profiles yet. Create one to get started.

{% endif %} Create New Profile {% endblock %}