{% extends "web/base.html" %} {% block title %}Research Memory | tcx{% endblock %} {% block page_label %}Research{% endblock %} {% block content %} {% if selected_artifact %}
Back to list
{% endif %} {% if selected_artifact %}
Markdown preview

{{ selected_artifact.title }}

v{{ selected_artifact.version }}
{{ selected_artifact.artifact_type }} {{ selected_artifact.universe }} {% if selected_artifact.role %}{{ selected_artifact.role }}{% endif %} {% if selected_artifact.symbol %}{{ selected_artifact.symbol }}{% endif %} {% if selected_artifact.source_as_of %}as of {{ selected_artifact.source_as_of }}{% endif %} {{ selected_artifact.artifact_id }}
{% if artifact_preview.metadata_items %}
Frontmatter
{% for item in artifact_preview.metadata_items %}
{{ item.label }}
{{ item.value }}
{% endfor %}
{% endif %}
{{ artifact_preview.html|safe }}
{% else %}
Artifacts

{{ artifacts|length }} records

{% for artifact in artifacts %} {{ artifact.title }} {{ artifact.universe }} · {{ artifact.artifact_type }}{% if artifact.symbol %} · {{ artifact.symbol }}{% endif %} {{ artifact.readiness_label|default:"unlabeled" }} · v{{ artifact.version }} · {{ artifact.updated_at|date:"Y-m-d H:i" }} {% empty %}
No records yet Workspace markdown files under trading/research and trading/reports will appear here.
{% endfor %}
{% endif %} {% endblock %}