snapshot: preserve admin i18n and language stability hardening
This commit is contained in:
@@ -4,7 +4,7 @@
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Handbook</title>
|
||||
<title>{% trans "Handbook" %}</title>
|
||||
<link rel="stylesheet" href="{% static 'workflows/css/buttons.css' %}" />
|
||||
<style>
|
||||
body { margin: 0; font-family: Arial, sans-serif; background: #f4f8ff; color: #1b2b43; padding: 20px; }
|
||||
@@ -28,39 +28,39 @@
|
||||
<div class="shell">
|
||||
<img class="brand-logo" src="{% static 'workflows/img/tubco-logo.svg' %}" alt="TUB/CO Logo" />
|
||||
<div class="top">
|
||||
<h1>Handbook</h1>
|
||||
<a class="btn btn-secondary" href="/">Back to Home</a>
|
||||
<h1>{% trans "Handbook" %}</h1>
|
||||
<a class="btn btn-secondary" href="/">{% trans "Back to Home" %}</a>
|
||||
</div>
|
||||
<p class="sub">Single documentation entry point for both operational knowledge and long-term engineering knowledge.</p>
|
||||
<p class="sub">{% trans "Single documentation entry point for both operational knowledge and long-term engineering knowledge." %}</p>
|
||||
|
||||
<div class="grid">
|
||||
<section class="card">
|
||||
<div class="eyebrow">Operations</div>
|
||||
<h2>Project Wiki</h2>
|
||||
<p>Operational and product-level documentation for onboarding, offboarding, PDFs, integrations, admin tools, and system behavior.</p>
|
||||
<div class="eyebrow">{% trans "Operations" %}</div>
|
||||
<h2>{% trans "Project Wiki" %}</h2>
|
||||
<p>{% trans "Operational and product-level documentation for onboarding, offboarding, PDFs, integrations, admin tools, and system behavior." %}</p>
|
||||
<ul>
|
||||
<li>workflow overview</li>
|
||||
<li>admin tools and system behavior</li>
|
||||
<li>integrations and operations</li>
|
||||
<li>runbook and troubleshooting</li>
|
||||
<li>{% trans "workflow overview" %}</li>
|
||||
<li>{% trans "admin tools and system behavior" %}</li>
|
||||
<li>{% trans "integrations and operations" %}</li>
|
||||
<li>{% trans "runbook and troubleshooting" %}</li>
|
||||
</ul>
|
||||
<div class="actions">
|
||||
<a class="btn btn-secondary" href="/admin-tools/wiki/">Open Project Wiki</a>
|
||||
<a class="btn btn-secondary" href="/admin-tools/wiki/">{% trans "Open Project Wiki" %}</a>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="card">
|
||||
<div class="eyebrow">Engineering</div>
|
||||
<h2>Developer Handbook</h2>
|
||||
<p>Engineering documentation for architecture, local setup, Docker, migrations, translations, deployment, testing, and long-term maintenance.</p>
|
||||
<div class="eyebrow">{% trans "Engineering" %}</div>
|
||||
<h2>{% trans "Developer Handbook" %}</h2>
|
||||
<p>{% trans "Engineering documentation for architecture, local setup, Docker, migrations, translations, deployment, testing, and long-term maintenance." %}</p>
|
||||
<ul>
|
||||
<li>repository and service structure</li>
|
||||
<li>Docker and migration workflow</li>
|
||||
<li>translation and builder architecture</li>
|
||||
<li>deployment, security, and maintenance notes</li>
|
||||
<li>{% trans "repository and service structure" %}</li>
|
||||
<li>{% trans "Docker and migration workflow" %}</li>
|
||||
<li>{% trans "translation and builder architecture" %}</li>
|
||||
<li>{% trans "deployment, security, and maintenance notes" %}</li>
|
||||
</ul>
|
||||
<div class="actions">
|
||||
<a class="btn btn-secondary" href="/admin-tools/developer-handbook/">Open Developer Handbook</a>
|
||||
<a class="btn btn-secondary" href="/admin-tools/developer-handbook/">{% trans "Open Developer Handbook" %}</a>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user