The Strategic Log Archive panel header used to show two engineery
badges sourced from server config:
new logs use: tone intermediate analysis speculative
Both were misleading:
- The tone badge described the SERVER's generator setting, not the
user's reading preference — confusingly disconnected from the
Novice | Pro toggle in the topbar that actually controls what AI
panels render.
- The analysis flag is always SPECULATIVE in production, so the badge
carried no information.
Drop the "new logs use:" prefix and the analysis badge. The tone badge
now mirrors the user's toggle: NOVICE → "novice", INTERMEDIATE → "pro"
(same data values; just the display label flips, matching the header
relabel from 3e1a14f).
Wiring lives in base.html: a new cassandraSyncToneBadge(tone) helper
updates the #tone-badge element when present. Called from
DOMContentLoaded (so the initial badge picks up the localStorage tone)
and from cassandraSetTone (so toggling the header updates the badge
live, without a page refresh).
current_tone / current_analysis are removed from _log_page_context —
log.html was the only consumer and neither key is referenced now.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
72 lines
3.6 KiB
HTML
72 lines
3.6 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ BRAND_NAME }} · Strategic Log{% endblock %}
|
|
|
|
{% block main %}
|
|
<section class="panel log-page" style="grid-column: 1 / -1;">
|
|
<div class="panel-header">
|
|
<span class="title">Strategic Log Archive</span>
|
|
<span class="meta">
|
|
selected {{ selected_iso }}
|
|
·
|
|
{# Tone badge mirrors the header toggle. base.html's DOMContentLoaded
|
|
hook and cassandraSetTone() both update this element so the label
|
|
stays in step with the user's choice — no need to re-render the
|
|
page when the toggle flips. #}
|
|
<span id="tone-badge" class="badge badge--tone-pro">tone <span data-tone-label>pro</span></span>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="log-page__body">
|
|
<aside class="log-page__cal"
|
|
hx-get="/api/log/days?month={{ selected_month }}&selected={{ selected_iso }}"
|
|
hx-trigger="load"
|
|
hx-swap="innerHTML">
|
|
<div class="empty">loading calendar…</div>
|
|
</aside>
|
|
|
|
<article id="log-content"
|
|
class="log-page__content"
|
|
hx-get="/api/log/by-date/{{ selected_iso }}?as=html"
|
|
hx-trigger="load, tone-changed, lang-changed"
|
|
hx-swap="innerHTML">
|
|
<div class="empty">loading log…</div>
|
|
</article>
|
|
|
|
{% if paid %}
|
|
<aside id="chat-sidebar" class="log-page__chat">
|
|
<div class="chat-header">
|
|
<span class="chat-title" data-i18n="chat.title">{% if user_lang == 'it' %}Chiedi a Cassandra{% else %}Ask Cassandra{% endif %}</span>
|
|
<span class="chat-hint" data-i18n="chat.hint">{% if user_lang == 'it' %}basato sull'ultimo log + dati in tempo reale{% else %}grounded on the latest log + live data{% endif %}</span>
|
|
</div>
|
|
<div id="chat-thread" class="chat-thread">
|
|
<div class="chat-msg chat-msg--system" data-i18n="chat.lede">{% if user_lang == 'it' %}Fai domande sull'analisi di oggi. Il modello vede l'ultimo log strategico, le quotazioni di mercato in tempo reale per tutti i gruppi e le ultime 24h di titoli filtrati per tesi. Un refresh della pagina cancella questa conversazione.{% else %}Ask about today's analysis. The model sees the latest strategic log, live market readings across all groups, and the last 24h of thesis-filtered headlines. Refresh wipes this conversation.{% endif %}</div>
|
|
</div>
|
|
<form id="chat-form" class="chat-form" autocomplete="off">
|
|
<textarea id="chat-input" rows="2"
|
|
data-i18n-placeholder="chat.placeholder"
|
|
placeholder="{% if user_lang == 'it' %}es. perché il comparto difesa è piatto nonostante Hormuz?{% else %}e.g. why is the defence sleeve flat through Hormuz?{% endif %}"
|
|
required></textarea>
|
|
<button id="chat-send" type="submit" data-i18n="chat.send">{% if user_lang == 'it' %}Invia{% else %}Send{% endif %}</button>
|
|
</form>
|
|
</aside>
|
|
{% else %}
|
|
<aside class="log-page__chat log-page__chat--locked">
|
|
<div class="chat-header">
|
|
<span class="chat-title">Ask Cassandra</span>
|
|
<span class="chat-hint">paid-tier feature</span>
|
|
</div>
|
|
<div class="chat-locked">
|
|
<p>
|
|
<strong>Follow-up chat is a paid feature.</strong>
|
|
Ask the model a question about any past log — it sees the
|
|
full day's context: the strategic log, live market readings, and
|
|
the last 24 hours of thesis-filtered headlines.
|
|
</p>
|
|
<a class="btn-primary" href="/pricing">See pricing</a>
|
|
</div>
|
|
</aside>
|
|
{% endif %}
|
|
</div>
|
|
</section>
|
|
{% if paid %}<script src="{{ url_for('static', path='/js/chat.js') }}?v={{ ASSET_VERSION }}" defer></script>{% endif %}
|
|
{% endblock %}
|