Files
LLeMbas/src/lembas/web/templates/admin/models.html
T
HomerandClaude Opus 5 a16510aba8 The interface speaks Slovak
969 strings, an instance default and a per-person choice, and no half-done corner:
the admin prose is translated too. Design and reasoning: LLeMbas.wiki/Translations.

KEYED BY THE ENGLISH SENTENCE

A missing entry renders the key, which is the English -- so an untranslated string
looks as it always did, an English instance is byte-for-byte 1.6.0, and a
half-finished catalogue is a half-translated page rather than a page of dotted key
names. The cost is that editing an English sentence orphans its translation
silently, which is what tests/test_translations.py asserts in both directions.

No gettext: .po -> .mo is a build step and this project does not have one.

A JINJA GLOBAL, AND THEREFORE A CONTEXTVAR

`t()` is a global for the reason `brand` already documents -- render() is bypassed
by 25 TemplateResponse calls and 8 get_template().render() calls, the latter being
the SSE frames, which have no Request at all. A global is bound once at import and
the language is per person, so the active language is a ContextVar set per request.

🚨 `get_current_user` had to become `async def`. FastAPI runs a sync dependency in a
threadpool, and anyio copies the context in and discards it on the way out -- so
the language was set where nothing could see it and every page rendered in the
instance's language whatever anybody had chosen, with no error anywhere.

NOT TRANSLATED, ON PURPOSE

Everything a model reads: the 60 prompt fragments, and the dates in harness.py,
schedule/runner.py and schedule/compile.py. Only `i18n.stamp` is localised, and
only where a person reads it -- with the *format* translatable as well as the
words, because "26. septembra 2026" is a different pattern rather than the same one
with different words in it. A process locale is not an option: global, not
thread-safe, two people's pages at once.

A second fragment telling models to answer in the reader's language was written
during this work and removed: `core.style` has said it since long before, and
test_an_empty_override_turns_a_fragment_off caught the duplicate.

THE BULK PASS

1213 sites wrapped by a one-off script that only touched patterns it could not
misread. It got three wrong in a way that mattered -- `t('…')` inside `attr="…"`
where the sentence held an apostrophe, closing the Jinja string and 500ing two
pages whose partials no test renders. tests/test_translations.py now compiles all
110 templates. It also wrapped the product's own name, an SSH key header, a
keystroke hint and an example URL, all taken back out: a string is not
translatable just because it is a string.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
2026-09-26 14:46:33 +00:00

152 lines
6.4 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "admin/_layout.html" %}
{% from "_macros.html" import icon, model_avatar %}
{% set section = "models" %}
{% block title %}Models - {{ brand.name }}{% endblock %}
{% block heading %}Models{% endblock %}
{% block admin_content %}
<p class="admin-lede">
Every model discovered across your connections. The order here is the order
users see in the picker. <strong>{{ t("Pinning") }}</strong> does not reorder anything —
it puts a shortcut in the chat sidebar. The <strong>{{ t("default") }}</strong> is what a
new chat starts with.
</p>
{% if saved %}
<div class="alert alert--success">{{ icon("check", "icon--sm") }} <span>{{ saved }}</span></div>
{% endif %}
{% if not total %}
<div class="empty" style="padding: var(--sp-10) 0">
{{ icon("server", "empty__mark") }}
<p class="empty__text">
No models yet. <a href="/admin/connections">Add a connection</a> and run
“Test &amp; refresh”.
</p>
</div>
{% else %}
{# Filters are links, so a filtered view is a real URL you can keep or share. #}
<div class="filter-bar">
<div class="filter-tabs">
{% for key, label in filters.items() %}
<a class="filter-tab {{ 'is-active' if key == active_filter }}"
href="/admin/models?filter={{ key }}{% if q %}&q={{ q|urlencode }}{% endif %}{% if connection_id %}&connection={{ connection_id }}{% endif %}">
{{ label }} <span class="filter-tab__count">{{ counts[key] }}</span>
</a>
{% endfor %}
</div>
<form class="filter-form" method="get" action="/admin/models">
<input type="hidden" name="filter" value="{{ active_filter }}">
<input class="input" type="search" name="q" value="{{ q }}"
placeholder="{{ t('Search models…') }}" aria-label="{{ t('Search models') }}">
<select class="select" name="connection" aria-label="{{ t('Connection') }}">
<option value="">{{ t("All connections") }}</option>
{% for conn in connections %}
<option value="{{ conn.id }}" {{ 'selected' if conn.id == connection_id }}>
{{ conn.name }}
</option>
{% endfor %}
</select>
<button class="btn" type="submit">{{ icon("search", "icon--sm") }} Filter</button>
{% if q or connection_id or active_filter != "all" %}
<a class="btn btn--ghost" href="/admin/models">Clear</a>
{% endif %}
</form>
</div>
{% if not models %}
<div class="empty" style="padding: var(--sp-8) 0">
<p class="empty__text">{{ t("Nothing matches that filter.") }}</p>
</div>
{% else %}
<form method="post" action="/admin/models/bulk">
<div class="bulk-bar">
<label class="checkbox">
<input type="checkbox" data-select-all="#model-rows"
aria-label="{{ t('Select every model on this page') }}">
<span class="bulk-bar__label">{{ t("Select all") }}</span>
</label>
<span class="spacer"></span>
<span class="bulk-bar__label">{{ t("With selected:") }}</span>
<button class="btn btn--sm" name="action" value="enable" type="submit">{{ t("Enable") }}</button>
<button class="btn btn--sm" name="action" value="disable" type="submit">{{ t("Disable") }}</button>
<button class="btn btn--sm" name="action" value="public" type="submit">{{ t("Make public") }}</button>
<button class="btn btn--sm" name="action" value="private" type="submit">{{ t("Restrict") }}</button>
</div>
<div class="model-rows" id="model-rows">
{% for model in models %}
<div class="model-row {{ 'is-off' if not model.enabled }}">
<input class="model-row__check" type="checkbox" name="model_ids" value="{{ model.id }}"
aria-label="Select {{ model.label }}">
<span class="model-row__pos">{{ page_start + loop.index }}</span>
{{ model_avatar(model, cls="model-row__avatar") }}
<div class="model-row__main">
<div class="model-row__title">
<a class="model-row__name" href="/admin/models/{{ model.id }}/edit">{{ model.label }}</a>
{% if model.model_id == default_model %}
<span class="badge badge--leaf">{{ t("default") }}</span>
{% endif %}
{% if model.pinned %}<span class="badge">{{ t("pinned") }}</span>{% endif %}
{% if not model.enabled %}<span class="badge badge--danger">{{ t("disabled") }}</span>{% endif %}
{% if not model.public %}<span class="badge">{{ t("restricted") }}</span>{% endif %}
{% for name, on in (model.capabilities_json or {}).items() %}
{% if on %}<span class="badge badge--leaf">{{ name }}</span>{% endif %}
{% endfor %}
</div>
<code class="model-row__id">{{ model.model_id }} · {{ model.connection.name }}</code>
</div>
<div class="model-row__actions">
{# formaction lets these post elsewhere without nesting a second form. #}
<button class="btn btn--icon btn--sm" type="submit" aria-label="{{ t('Move up') }}"
formaction="/admin/models/{{ model.id }}/move" name="direction" value="up"
{{ 'disabled' if page == 1 and loop.first }}>
{{ icon("arrow-up", "icon--sm") }}
</button>
<button class="btn btn--icon btn--sm" type="submit" aria-label="{{ t('Move down') }}"
formaction="/admin/models/{{ model.id }}/move" name="direction" value="down"
{{ 'disabled' if page == pages and loop.last }}>
{{ icon("arrow-down", "icon--sm") }}
</button>
<a class="btn btn--sm" href="/admin/models/{{ model.id }}/edit">Edit</a>
</div>
</div>
{% endfor %}
</div>
</form>
<div class="list-footer">
<span class="text-xs faint">
Showing {{ page_start + 1 }}–{{ page_start + models|length }} of {{ matched }}
{%- if matched != total %} (filtered from {{ total }}){% endif %}
</span>
{% if pages > 1 %}
{% set base = "/admin/models?filter=" ~ active_filter ~ ("&q=" ~ q|urlencode if q else "") ~ ("&connection=" ~ connection_id if connection_id else "") %}
<div class="btn-row">
{% if page > 1 %}
<a class="btn btn--sm" href="{{ base }}&page={{ page - 1 }}">Previous</a>
{% else %}
<span class="btn btn--sm" aria-disabled="true" style="opacity: .45">{{ t("Previous") }}</span>
{% endif %}
<span class="text-xs faint">Page {{ page }} of {{ pages }}</span>
{% if page < pages %}
<a class="btn btn--sm" href="{{ base }}&page={{ page + 1 }}">Next</a>
{% else %}
<span class="btn btn--sm" aria-disabled="true" style="opacity: .45">{{ t("Next") }}</span>
{% endif %}
</div>
{% endif %}
</div>
{% endif %}
{% endif %}
{% endblock %}