{% extends "base.html" %} {% block title %}fx-quant — Logs{% endblock %} {% block content %}
{% if order_rows %}
{% for h in order_headers %}{% endfor %} {% for row in order_rows %} {% for cell in row %}{% endfor %} {% endfor %}
{{ h }}
{{ cell }}
{% else %}

No order log entries.

{% endif %}
{% if ai_rows %}
{% for h in ai_headers %}{% endfor %} {% for row in ai_rows %} {% for cell in row %}{% endfor %} {% endfor %}
{{ h }}
{{ cell }}
{% else %}

No AI decision entries.

{% endif %}
{% endblock %}