{% extends "dashboard/base.html" %} {% block title %}Goals & Milestones - Command Center{% endblock %} {% block content %} {% if goals %}
{% for goal in goals %}

{{ goal.name }}

{{ goal.description }}

{{ goal.status }}
Progress {{ ((goal.current_value / goal.target_value * 100) if goal.target_value and goal.current_value else 0)|round(0)|int }}%
Target Value
{{ goal.target_value }}
Target Date
{{ goal.end_date.strftime('%b %d, %Y') if goal.end_date else '—' }}
{% endfor %}
{% else %}

No Goals Yet

Set your first business goal to start tracking progress

{% endif %} {% endblock %}