{% extends "admin/index.html" %} {% block admin_content %}
Fitbit Connection
{% if is_connected %} Connected {% else %} Disconnected {% endif %}

{% if not is_connected %}
Connect to Fitbit:
  1. Click "Get Authorization URL" below.
  2. Visit the URL in your browser and authorize the app.
  3. You will be redirected to a URL (likely failing to load). Copy the entire URL.
  4. Paste it in the box below and click "Complete Connection".
{% else %}
{% endif %}
Recent Weight Logs
{% for log in logs %} {% else %} {% endfor %}
Date Weight (kg) Source
{{ log.date }} {{ log.weight }} {{ log.source }}
No logs found. Sync to import data.
{% endblock %}