{% extends "base.html" %} {% block title %}{{ study.name }} — ResearchLoop{% endblock %} {% block content %}
{{ error }}
{% endif %} {% if success %}{{ success }}
{% endif %}| ID | Status | Idea | Loop | 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.loop_id and sp.status not in ('completed', 'failed', 'cancelled') %}auto-generating idea...{% elif sp.summary %}{{ sp.summary[:60] }}{% if sp.summary|length > 60 %}…{% endif %}{% endif %} | {% if sp.loop_id %}{{ sp.loop_id }}{% endif %} | {{ sp.created_at }} | {% if sp.status.startswith('running') or sp.status == 'submitted' %} {% endif %} |