{% extends "base.html" %} {% block title %}Public Profile{% endblock %} {% block content %}

@{{ page.username }}

Public profile

{% if page.show_entries || page.show_weights %}

Recent Days

{% for row in page.recent_days %} {% endfor %}
DateCaloriesWeight
{{ row.date_text }} {% if page.show_entries %}{{ row.calories }}{% else %}Hidden{% endif %} {% if page.show_weights %}{{ row.weight_label }}{% else %}Hidden{% endif %}
{% endif %} {% if page.show_reports %}
{% for card in page.report_cards %}

{{ card.title }}

{{ card.range_label }}

{{ card.average_calories_per_day }}

avg cal/day

{% endfor %}
{% endif %} {% if page.show_planning %}

Planning

Target weight (lbs)
{{ page.target_weight_label }}
Target calories
{{ page.target_calories_label }}
BMR
{{ page.bmr_label }}
{% endif %} {% if !page.show_entries && !page.show_weights && !page.show_reports && !page.show_planning %}

This user has not shared any data publicly.

{% endif %} {% endblock %}