{% extends "base.html" %} {% block content %}
{% if not view_mode %} {% if is_admin and query %}
{{ 'Edit Report Recipe' if edit_id else 'Report Studio' }}
`{{ query }}`
{{ source | default('query') }} {% if source | default('query') == 'semantic' %} semantic source: {{ semantic_source | default('title') }} {% endif %}
.qmd
{% if edit_id %}
Keep this slug to regenerate the existing report, or change it to create a new report.
{% endif %}
{% if edit_id %}
Regeneration uses the saved recipe and can overwrite manual edits made directly in the QMD if the slug is unchanged.
{% endif %}
{% endif %}
Research Archive
{{ reports|length }} Reports
{% for report in reports %} {% else %} {% endfor %}
Date Report Title Actions
{{ report.date }}
{{ report.title }}
{{ report.name }}{% if report.source %} ยท {{ report.source }}{% endif %}
{% if is_admin and report.has_meta %} Edit {% elif is_admin %} {% endif %} HTML QMD {% if is_admin %} PDF {% endif %}
No reports found. Generate one from the Query screen.
{% else %}
{% if is_admin %} PDF {% endif %}
{{ report_html | safe }}
{% endif %}
{% endblock %}