Capture Concept
Processing...
Initializing...
0%
Concepts
{{ concepts|length }} total
{% for concept in concepts %}
{% endfor %}
{% if not 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 %}
Raw Input
{{ concept.raw_input }}
Revisions
Click to load revisions...
{% if concept.status == 'captured' %}
{% endif %}
{% if concept.status == 'analyzed' %}
{% endif %}
{% if concept.status != 'parked' %}
{% else %}
{% endif %}
No concepts yet. Capture your first idea above.
{% endif %}
Batch Builder
0 selectedBatch Plans
{{ batch_plans|length }} plans
{% for plan in batch_plans %}
{% endfor %}
{% if not batch_plans %}
{{ plan.title or 'Untitled Batch Plan' }}
{{ plan.status }}
{{ plan.created_at.strftime('%b %d, %Y') if plan.created_at else '' }}
No batch plans yet. Select 2+ concepts and create one.
{% endif %}