- dashboard grid: explicit "header" area as the first row so the
aggregated read panel renders at the top instead of being
auto-placed after the named areas.
- indicators: hide rows flagged stale (older than the group's
freshness threshold). Server still computes stale_symbols;
rendering can be re-enabled by removing the
`{% if not is_stale %}` wrapper in indicators.html.
- /log: add tone-changed to #log-content's hx-trigger and include
it in cassandraSetTone's selector list — toggling Novice /
Intermediate on the Log page was previously a no-op.
- prompts: bump PROMPT_VERSION 7→8. Strengthen the rational-vs-
irrational framing in the strategic-log system prompt from
aspirational to mandatory ("a paragraph without both lenses must
be rewritten"). Require the same lens in the per-group summary,
cross-asset aggregate, and portfolio commentary overrides.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
70 lines
2.8 KiB
HTML
70 lines
2.8 KiB
HTML
{% if summary %}
|
|
<div class="ind-summary">
|
|
<div class="ind-summary__head">
|
|
<span class="ind-summary__label">read</span>
|
|
<span class="ind-summary__when" title="generated {{ summary.generated_at }}">
|
|
{{ summary.generated_at.strftime("%H:%M UTC") }}
|
|
</span>
|
|
</div>
|
|
<p class="ind-summary__body">{{ summary.content | glossary(tone) }}</p>
|
|
</div>
|
|
{% else %}
|
|
<div class="ind-summary ind-summary--pending">
|
|
<span class="ind-summary__label">read</span>
|
|
<span class="ind-summary__body">summary pending — generated hourly @ :07 UTC</span>
|
|
</div>
|
|
{% endif %}
|
|
{% if not quotes %}
|
|
<div class="empty">no data yet — scheduler may not have run</div>
|
|
{% else %}
|
|
<table class="dense">
|
|
<thead>
|
|
<tr>
|
|
<th>Symbol</th><th>Label</th>
|
|
<th class="num">Price</th><th>Ccy</th>
|
|
<th class="num">1d</th><th class="num">1m</th><th class="num">1y</th>
|
|
{% if has_anchor %}<th class="num">anchor</th>{% endif %}
|
|
<th>as-of</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for q in quotes %}
|
|
{% set is_stale = stale_symbols and q.symbol in stale_symbols %}
|
|
{# Stale rows (last observation older than the group's freshness
|
|
threshold) are hidden from the default UI but the server still
|
|
computes them — remove the `{% if not is_stale %}` guard to
|
|
resurface the dimmed row + stale tag. #}
|
|
{% if not is_stale %}
|
|
<tr>
|
|
{% set tip = notes.get(q.symbol, '') if notes else '' %}
|
|
{# Long Eurostat ('dataset?...') and ONS ('topic/.../cdid/dataset') symbols
|
|
get truncated for display; hover shows the full identifier via title.
|
|
Other symbols pass through. #}
|
|
{% set short_sym = q.symbol %}
|
|
{% if '?' in short_sym %}{% set short_sym = short_sym.split('?')[0] %}{% endif %}
|
|
{% if '/' in short_sym %}{% set short_sym = short_sym.split('/')[-2] | upper %}{% endif %}
|
|
<td class="label has-tip" title="{{ q.symbol }}{% if tip %} — {{ tip }}{% endif %}">
|
|
{{ short_sym }}
|
|
</td>
|
|
<td {% if tip %}title="{{ tip }}"{% endif %}>{{ q.label or "" }}</td>
|
|
<td class="num">{{ q.price | price }}</td>
|
|
<td class="neu">{{ q.currency or "" }}</td>
|
|
{% for k in ["1d","1m","1y"] %}
|
|
{% set v = q.changes.get(k) if q.changes else None %}
|
|
<td class="num {% if v is none %}neu{% elif v >= 0 %}pos{% else %}neg{% endif %}">
|
|
{% if v is none %}—{% else %}{{ "%+.2f"|format(v) }}%{% endif %}
|
|
</td>
|
|
{% endfor %}
|
|
{% if has_anchor %}
|
|
{% set va = q.changes.get('anchor') if q.changes else None %}
|
|
<td class="num {% if va is none %}neu{% elif va >= 0 %}pos{% else %}neg{% endif %}">
|
|
{% if va is none %}—{% else %}{{ "%+.2f"|format(va) }}%{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
<td class="neu">{{ q.as_of or "" }}</td>
|
|
</tr>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endif %}
|