This commit is contained in:
2026-04-22 01:45:53 +09:00
parent 4913a12050
commit a0e8a7faf4
16 changed files with 78 additions and 78 deletions
+4 -4
View File
@@ -9,21 +9,21 @@
{% block content %}
<section class="tls-status">
<h1 class="tls-landing-title"><span class="font-bold">Nercone</span> <span class="font-weight-300">TLS Test</span></h1>
<p class="tls-status-subtitle"><span class="font-bold">{{ target }}</span><span class="text-tx-alt"> のテストは<span id="tls-status-verb">実行中</span>です。</span></p>
<p class="tls-status-subtitle"><span class="font-bold">{{ target }}</span><span class="text-light-grey-alt"> のテストは<span id="tls-status-verb">実行中</span>です。</span></p>
<div class="tls-status-progress">
<p id="tls-phase" class="tls-status-phase text-tx-alt font-small">待機中…</p>
<p id="tls-phase" class="tls-status-phase text-light-grey-alt font-small">待機中…</p>
<div class="tls-progress-track">
<div id="tls-progress-bar" class="tls-progress-bar" style="width: 0%"></div>
</div>
<p class="tls-status-testid text-tx-alt font-small">テストID: <code>{{ test_id }}</code></p>
<p class="tls-status-testid text-light-grey-alt font-small">テストID: <code>{{ test_id }}</code></p>
</div>
<div class="tls-log-wrap">
<div id="tls-log" class="tls-log">
{% for entry in progress_entries %}
<div class="tls-log-row">
<span class="tls-log-cat text-tx-alt">[{{ entry.phase }}]</span>
<span class="tls-log-cat text-light-grey-alt">[{{ entry.phase }}]</span>
<span class="tls-log-msg">{{ entry.detail }}</span>
</div>
{% endfor %}