{% extends "base.html" %} {% set page = "daily" %} {% block content %}
📊 日次レポート / Daily Report
{% if entries %}
{% for e in entries %} {% endfor %}
日付 / Date ライン / Line 総件数 / Total 集計対象 / Included 除外 / Excluded
{{ e.date }} {{ e.line_no }} {{ "{:,}".format(e.total) }} {{ "{:,}".format(e.included) }} {% if e.excluded > 0 %}{{ e.excluded }}{% else %}-{% endif %}
{% else %}
⚠️ データがありません。先に「取り込み」からCSVを読み込んでください。
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}