{% extends "base.html" %} {% block title %}goals · Maverick{% endblock %} {% block content %}

all goals

{% if goals %} {% for g in goals %} {% endfor %}
idstatustitledescription
#{{ g.id }} {{ g.status }} {{ g.title }} 120 %} title="{{ g.description }}"{% endif %}>{{ (g.description or '')[:120] }}{% if g.description and g.description|length > 120 %}…{% endif %} plan · replay
{% else %}

No goals yet

Start one from the chat or from the command line.

maverick start "Plan a 3-day trip to Lisbon under $1500"
{% endif %}
{% endblock %}