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

@{{ page.username }}

Public profile

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

{{ page.month_label }}

Calendar view

Sun
Mon
Tue
Wed
Thu
Fri
Sat
{% for cell in page.calendar_cells %} {% if cell.is_padding %} {% else %} {% if cell.is_future %}
{{ cell.date_text }} {{ cell.day_num }}

{% if page.show_entries %}{{ cell.total }} cal{% else %}Hidden{% endif %}

{% if page.show_entries %}{{ cell.entry_label }}{% else %}Entries hidden{% endif %}

{% if page.show_weights %}{{ cell.weight_label }}{% else %}Weight hidden{% endif %}

Future

{% else %} {% if cell.href != "#" %}
{{ cell.date_text }} {{ cell.day_num }}

{% if page.show_entries %}{{ cell.total }} cal{% else %}Hidden{% endif %}

{% if page.show_entries %}{{ cell.entry_label }}{% else %}Entries hidden{% endif %}

{% if page.show_weights %}{{ cell.weight_label }}{% else %}Weight hidden{% endif %}

{% else %}
{{ cell.date_text }} {{ cell.day_num }}

{% if page.show_entries %}{{ cell.total }} cal{% else %}Hidden{% endif %}

{% if page.show_entries %}{{ cell.entry_label }}{% else %}Entries hidden{% endif %}

{% if page.show_weights %}{{ cell.weight_label }}{% else %}Weight hidden{% endif %}

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

Recent Days

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

Recent Trends

Past 14 days

{% if page.show_entries %}

Daily Calories

{% endif %} {% if page.show_weights %}

Daily Weight (lbs)

{% 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 %} {% block scripts %} {% if page.show_entries || page.show_weights %} {% endif %} {% endblock %}