{% extends "base.html" %} {% block title %}Sprints — ResearchLoop{% endblock %} {% block content %}

Sprints

{% if studies %}

New sprint

{% if error %}

{{ error }}

{% endif %} {% if success %}

{{ success }}

{% endif %}
{% set last_study = sprints[0].study_name if sprints else None %}
Resource settings
{% endif %} {% for sp in sprints %} {% endfor %}
IDStudyStatusIdeaLoopCreated
{{ sp.id }} {{ sp.study_name }} {{ sp.status.split(' ')[0] }}{% if '(' in sp.status %} {{ sp.status.split('(')[1].rstrip(')') }}{% endif %} {% if sp.idea %}{{ sp.idea[:50] }}{% if sp.idea|length > 50 %}…{% endif %}{% elif sp.loop_id and sp.status not in ('completed', 'failed', 'cancelled') %}auto-generating idea...{% elif sp.summary %}{{ sp.summary[:50] }}{% if sp.summary|length > 50 %}…{% endif %}{% endif %} {% if sp.loop_id %}{{ sp.loop_id }}{% endif %} {{ sp.created_at }} {% if sp.status.startswith('running') or sp.status == 'submitted' %} {% endif %}
{% endblock %}