{% extends "base.html" %} {% import 'partials/_components.html' as components %} {% block topbar_current %}summary{% endblock %} {% block title %}TLS Results Summary{% endblock %} {% block head %} {% endblock %} {% block content %}
{{ total }} result{{ '' if total == 1 else 's' }}
{% if not is_default_dir %} Reset {% endif %}
{% if dir_error %}
⚠ {{ dir_error }} — showing default folder.
{% endif %}

TLS Results Summary

All saved TLS HDF5 outputs — click a column to sort, type to filter.

Per-column filter syntax: >5, <10, >=2, <=1, =5, 3..7 (range) for numbers; ==exact for full match, else substring for text.

{% if rows %}
{% for r in rows %} {% endfor %}
Target Pipeline Exp (s) Sector Porb [d] Dur [hr] Rp/Rs Depth [ppt] SDE SNR FAP Odd-even Δ N_tr Prot [d] GLS power TOI TIC Files
{% if r.png %}{{ r.stem }}{% else %}{{ r.stem }}{% endif %} {% if r.pipeline %}{{ r.pipeline }}{% else %}{% endif %} {% if r.exptime is not none %}{{ "%.0f"|format(r.exptime) }}{% endif %} {% if r.sector is not none %}{{ r.sector }}{% endif %} {% if r.Porb is not none %}{{ "%.4f"|format(r.Porb) }}{% endif %} {% if r.duration_hr is not none %}{{ "%.2f"|format(r.duration_hr) }}{% endif %} {% if r.rp_rs is not none %}{{ "%.4f"|format(r.rp_rs) }}{% endif %} {% if r.depth_ppt is not none %}{{ "%.2f"|format(r.depth_ppt) }}{% endif %} {% if r.SDE is not none %}{{ "%.2f"|format(r.SDE) }}{% endif %} {% if r.snr is not none %}{{ "%.2f"|format(r.snr) }}{% endif %} {% if r.FAP is not none %}{{ "%.2e"|format(r.FAP) }}{% endif %} {% if r.odd_even is not none %}{{ "%.2f"|format(r.odd_even) }}{% endif %} {% if r.n_tr is not none %}{{ r.n_tr }}{% endif %} {% if r.Prot_gls is not none %}{{ "%.3f"|format(r.Prot_gls) }}{% endif %} {% if r.power_gls is not none %}{{ "%.4f"|format(r.power_gls) }}{% endif %} {{ r.toi if r.toi is not none else '' }} {{ r.tic if r.tic is not none else '' }} {% if r.external %} {{ r.disk_path }} {% else %} {% if r.png %}PNG{% endif %} {% if r.h5 %}H5{% endif %} {% endif %}
{% else %}
No TLS results in this directory yet. Run a target on the home page with Save outputs enabled and the resulting *_tls.h5 files will appear here.
{% endif %} {% if skipped %}
{{ skipped|length }} file{{ '' if skipped|length == 1 else 's' }} could not be parsed
{% endif %} {% endblock %} {% block scripts %} {{ components.page_loading('Loading TLS results…', subtitle_id='pageLoadingPath') }} {% endblock %}