{% extends "base.html" %} {% block title %}Overview{% endblock %} {% block content %}

{{ research.description }}

{% if research.headline %}
{{ research.headline.metric }} {{ research.headline.value | num }} {% if research.headline.target is not none %} target {{ research.headline.target | num }} {% endif %}
best result →
{% endif %}

Questions

{% if questions %}
{% for q in questions %} {% endfor %}
QuestionStatusMetric Hyp.Inval. BestDelta OwnerLast activity
{{ q.title }} {{ q.description }} {{ q.status }} {{ q.primary_metric or '—' }} {{ q.hypotheses_tested }} {% if q.invalidated_count %}{{ q.invalidated_count }}{% else %}0{% endif %} {% if q.best %}{{ q.best.metric.value | num }}{% else %}—{% endif %} {% if q.best and q.best.metric.delta is not none %} {{ q.best.metric.delta | delta }} {% elif q.reference and q.reference.kind == 'target' %} vs target {% else %}—{% endif %} {{ q.owner or '—' }} {{ q.last_activity or '—' }}
{% else %}

No questions yet. A repo with no question has nothing to research.

{% endif %}

Datasets

{% if datasets %} {% else %}

None referenced yet.

{% endif %}

Findings

{% if findings %} {% else %}

Nothing recorded yet.

{% endif %}
{% if research_body %}
{{ research_body }}
{% endif %} {% if log %}

Activity log

log.md
{{ log }}
{% endif %} {% endblock %}