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

{{ study.name }} {% if source == 'ui' %} ui {% else %} yaml {% endif %} {% if is_ui_edited %} (edited) {% endif %}

{% if error %}

{{ error }}

{% endif %} {% if success %}

{{ success }}

{% endif %}
Cluster
{{ study.cluster }}
Description
{{ study.description or '—' }}
Sprints directory
{{ study.sprints_dir }}
Edit {% if has_yaml_version %}
{% endif %} {% if can_delete %}
{% endif %}

New sprint

Resource settings

Recent sprints

{% for sp in sprints %} {% endfor %}
IDStatusIdeaLoopCreated
{{ 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 %}
{% endblock %}