{% extends "base.html" %} {% block title %}AI Medical Intelligence Pipeline — Execution Logs{% endblock %} {% block content %} {% if logs %}
{{ logs | length }} trace{{ 's' if logs | length != 1 }}
{% for entry in logs %} {% endfor %}
# Timestamp Image ID Size (KB) Actions
{{ loop.index }} {{ entry.timestamp }} {{ entry.image_id }} {{ entry.size_kb }} {% if entry.txt_file %} TXT {% endif %} {% if entry.json_file %} JSON {% endif %}
{% else %}

No execution logs yet

Upload and screen a DICOM file to generate the first inference trace.

Upload a Scan
{% endif %} {% endblock %}