{% extends "base.html" %} {% block title %}My Objectives{% endblock %} {% block content %} {% set me_page = 'objectives' %}

🎯 My Objectives β“˜

What you're working toward β€” surfaced daily in your briefing and used to prioritize tasks.

{% set horizons = [('week','This Week','⚑','rgba(245,158,11,.08)','rgba(245,158,11,.25)','#fbbf24'),('quarter','This Quarter','πŸ“…','rgba(37,99,235,.08)','rgba(37,99,235,.25)','#60a5fa'),('long_term','Long Term','🌐','rgba(139,92,246,.08)','rgba(139,92,246,.25)','#a78bfa')] %} {% for hkey,hlabel,hicon,hbg,hborder,hcolor in horizons %} {% set h_objs = objectives | selectattr('horizon','equalto',hkey) | list %} {% if h_objs %}
{{ hicon }} {{ hlabel }} {{ h_objs|length }}
{% for obj in h_objs %}
{{ obj.title }}
{% if obj.description %}
{{ obj.description }}
{% endif %} {% if obj.metric %}
πŸ“ {{ obj.metric }}
{% endif %}
{% set pct = obj.auto_progress_pct | default(0) | int %} {% if pct > 0 %}
Auto-tracked progress {{ pct }}%
{% set notes = obj.progress_notes %} {% if notes %} {% set last_note = notes | last %} {% if last_note and last_note.note %}
{{ last_note.note[:100] }}
{% endif %} {% endif %}
{% endif %}
{% endfor %}
{% endif %} {% endfor %} {% if not objectives %}
🎯

No objectives yet.

Start with your top 3. Think: what would make this week, this quarter, and this year a success?

⚑ "Ship the feature by Friday" πŸ“… "Close Q3 customer reviews" 🌐 "Build domain thought leadership"
{% endif %}
New Objective
{% include "includes/iqe_query_widget.html" %} {% endblock %}