162 lines
4.2 KiB
HTML
162 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{ .Title }}</title>
|
|
<link rel="stylesheet" href="/static/view.css">
|
|
</head>
|
|
<body>
|
|
<header class="page-header">
|
|
<div>
|
|
<h1>{{ .Title }}</h1>
|
|
</div>
|
|
{{ if .DownloadArchiveURL }}
|
|
<div class="header-actions">
|
|
<a class="header-action" href="{{ .DownloadArchiveURL }}">{{ if .DownloadArchiveLabel }}{{ .DownloadArchiveLabel }}{{ else }}Download archive{{ end }}</a>
|
|
</div>
|
|
{{ end }}
|
|
</header>
|
|
|
|
<main class="page-main">
|
|
{{ if .NoticeTitle }}
|
|
<section class="notice-panel">
|
|
<h2>{{ .NoticeTitle }}</h2>
|
|
<p>{{ .NoticeBody }}</p>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ if .HasSnapshot }}
|
|
<section class="meta-panel">
|
|
<h2>Snapshot Metadata</h2>
|
|
<table class="kv-table">
|
|
<tbody>
|
|
{{ range .Meta }}
|
|
<tr>
|
|
<th>{{ .Key }}</th>
|
|
<td>{{ .Value }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
|
|
<nav class="section-nav">
|
|
{{ range .Sections }}
|
|
<a href="#{{ .ID }}">{{ .Title }}</a>
|
|
{{ end }}
|
|
</nav>
|
|
|
|
<div class="sections-grid">
|
|
{{ range .Sections }}
|
|
<section class="section-card {{ if or (eq .ID "board") (eq .ID "firmware") }}section-card-half{{ else }}section-card-full{{ end }}" id="{{ .ID }}">
|
|
<h2>{{ .Title }}</h2>
|
|
|
|
{{ if eq .Kind "object" }}
|
|
<table class="kv-table">
|
|
<tbody>
|
|
{{ range .Rows }}
|
|
<tr>
|
|
<th>{{ .Key }}</th>
|
|
<td>
|
|
{{ range joinLines .Value }}
|
|
<div>{{ . }}</div>
|
|
{{ end }}
|
|
</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
{{ end }}
|
|
|
|
{{ if eq .Kind "table" }}
|
|
{{ $section := . }}
|
|
<div class="table-wrap">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
{{ range .Columns }}
|
|
<th>{{ . }}</th>
|
|
{{ end }}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range .Items }}
|
|
<tr>
|
|
{{ $row := . }}
|
|
{{ range $section.Columns }}
|
|
<td>
|
|
{{ $value := index $row.Cells . }}
|
|
{{ if eq . "status" }}
|
|
<span class="status-badge {{ statusClass $value }}">{{ $value }}</span>
|
|
{{ else }}
|
|
{{ range joinLines $value }}
|
|
<div>{{ . }}</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</td>
|
|
{{ end }}
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if eq .Kind "grouped_tables" }}
|
|
{{ range .Groups }}
|
|
<div class="table-group">
|
|
<h3>{{ .Title }}</h3>
|
|
{{ $group := . }}
|
|
<div class="table-wrap">
|
|
<table class="data-table">
|
|
<thead>
|
|
<tr>
|
|
{{ range .Columns }}
|
|
<th>{{ . }}</th>
|
|
{{ end }}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{ range .Items }}
|
|
<tr>
|
|
{{ $row := . }}
|
|
{{ range $group.Columns }}
|
|
<td>
|
|
{{ $value := index $row.Cells . }}
|
|
{{ if eq . "status" }}
|
|
<span class="status-badge {{ statusClass $value }}">{{ $value }}</span>
|
|
{{ else }}
|
|
{{ range joinLines $value }}
|
|
<div>{{ . }}</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</td>
|
|
{{ end }}
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
</section>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ if .Error }}
|
|
<section class="error-box">{{ .Error }}</section>
|
|
{{ end }}
|
|
|
|
{{ if not .HasSnapshot }}
|
|
<section class="empty-panel">
|
|
<h2>Snapshot Viewer</h2>
|
|
<p>This page renders one Reanimator snapshot provided by the embedding application.</p>
|
|
</section>
|
|
{{ end }}
|
|
</main>
|
|
</body>
|
|
</html>
|