{% include 'nav.html' %}

Capture Concept

?

Concepts

? {{ concepts|length }} total
{% for concept in concepts %}

{{ concept.title or concept.raw_input[:80] }}

{% set status_colors = { 'captured': 'bg-gray-600 text-gray-200', 'analyzed': 'bg-blue-900 text-blue-300 border border-blue-700', 'planned': 'bg-green-900 text-green-300 border border-green-700', 'combined': 'bg-purple-900 text-purple-300 border border-purple-700', 'staged': 'bg-amber-900 text-amber-300 border border-amber-700', 'implemented': 'bg-emerald-900 text-emerald-300 border border-emerald-700', 'parked': 'bg-slate-700 text-slate-300 border border-slate-600' } %} {{ concept.status }} {{ concept.source_type }} {% if concept.domain %} {{ concept.domain }} {% endif %}
{{ concept.created_at.strftime('%b %d, %Y %H:%M') if concept.created_at else 'N/A' }} {% if concept.tags %} {% for tag in concept.tags %} {{ tag }} {% endfor %} {% endif %}
{% endfor %} {% if not concepts %}
No concepts yet. Capture your first idea above.
{% endif %}

Batch Plans

? {{ batch_plans|length }} plans
{% for plan in batch_plans %}

{{ plan.title or 'Untitled Batch Plan' }}

{{ plan.status }}
{{ plan.created_at.strftime('%b %d, %Y') if plan.created_at else '' }}
{% endfor %} {% if not batch_plans %}
No batch plans yet. Select 2+ concepts and create one.
{% endif %}