{% extends 'doctor/base.html' %} {% load static %} {% block sidebar.dashboard %}{% endblock %} {% block sidebar.patients %}{% endblock %} {% block sidebar.challenge %}{% endblock %} {% block sidebar.appointments %}{% endblock %} {% block sidebar.chat_inbox %}{% endblock %} {% block sidebar.points %} class="active" {% endblock %} {% block content %}

Daily Points (Recent 7 Days)

{% for point in points_page %} {% empty %} {% endfor %}
Date Patient Total Points Fiber Activity Steps Exercise Engage Water Sleep Messages Data Entry Total Diet Breakfast Lunch Dinner Snack1 Snack2 Breakfast Fiber Lunch Fiber Dinner Fiber Snack1 Fiber Snack2 Fiber
{{ point.date }} {% if point.user.profile %} {{ point.user.profile.first_name }} {{ point.user.profile.last_name }} {% else %} {{ point.user.phone_number }} {% endif %} {{ point.total_points|floatformat:0 }} {{ point.total_Fiber_Point|floatformat:0 }} {{ point.total_Activity_Point|floatformat:0 }} {{ point.total_Steps_Point|floatformat:0 }} {{ point.total_Exercise_Point|floatformat:0 }} {{ point.total_Engage_Point|floatformat:0 }} {{ point.total_Water_Point|floatformat:0 }} {{ point.total_Sleep_Point|floatformat:0 }} {{ point.this_day_messages|floatformat:0 }} {{ point.this_day_DataEntry_score|floatformat:0 }} {{ point.this_day_total_diet_Point|floatformat:0 }} {{ point.this_day_breakfast_Point|floatformat:0 }} {{ point.this_day_lunch_Point|floatformat:0 }} {{ point.this_day_dinner_Point|floatformat:0 }} {{ point.this_day_snack1_Point|floatformat:0 }} {{ point.this_day_snack2_Point|floatformat:0 }} {{ point.this_day_breakfast_Fiber_Point|floatformat:0 }} {{ point.this_day_lunch_Fiber_Point|floatformat:0 }} {{ point.this_day_dinner_Fiber_Point|floatformat:0 }} {{ point.this_day_snack1_Fiber_Point|floatformat:0 }} {{ point.this_day_snack2_Fiber_Point|floatformat:0 }}
No points records found for the recent 7 days.
{% endblock %}