{% extends "base.html" %} {% block title %}Weekly Sustainability Goals{% endblock %} {% block head %} {% endblock %} {% block content %}

Weekly Sustainability Goals

Track your personal sustainability goals and measure your environmental impact.

{{ completed_goals|default(0) }}
Completed
{{ active_goals|default(0) }}
Active
Week {{ current_week|default('1') }}, {{ current_year|default('2025') }}
{% if weekly_goals %} {% for goal in weekly_goals %}
{{ goal.progress|default(0) }}%
{{ goal.description }}
{% if goal.category is defined %}
{{ goal.category|title }}
{% endif %}

{% if goal.continued %} Continued from previous week {% else %} Added {{ goal.date_added }} {% endif %}

{% if not goal.completed %} {% else %}
Completed {% if goal.completed_date is defined %} {{ goal.completed_date }} {% endif %}
{% endif %}
{% endfor %} {% endif %}
Add New Goal

Create a custom sustainability goal to track your environmental impact

Waste Energy Water
{% endblock %} {% block scripts %} {% endblock %}