{% extends "base.html" %} {% block title %}{{ loop.id }} — ResearchLoop{% endblock %} {% block head %} {% if loop.status in ('running', 'pending') %} {% endif %} {% endblock %} {% block content %}
| ID | Status | Idea | Summary | Created | |
|---|---|---|---|---|---|
| {{ sp.id }} | {{ sp.status.split(' ')[0] }}{% if '(' in sp.status %} {{ sp.status.split('(')[1].rstrip(')') }}{% endif %} | {% if sp.idea %}{{ sp.idea[:60] }}{% if sp.idea|length > 60 %}…{% endif %}{% elif sp.status not in ('completed', 'failed', 'cancelled') %}auto-generating...{% elif sp.summary %}{{ sp.summary[:60] }}{% if sp.summary|length > 60 %}…{% endif %}{% endif %} | {{ (sp.summary or '')[:80] }}{% if (sp.summary or '')|length > 80 %}…{% endif %} | {{ sp.created_at }} | {% if sp.status.startswith('running') or sp.status == 'submitted' %} {% endif %} |