eclipse/cmd/eclipse-httpd/html/pages/job.html.tmpl

39 lines
998 B
Cheetah

{{/*
* Copyright (C) 2024 Umorpha Systems
* SPDX-License-Identifier: AGPL-3.0-or-later
*/}}
{{- define "page-title" }}Job {{ .Job.ID }}{{ end }}
{{- define "page-content" }}
<section>
<dl class="job">
<dt class="job-status job-{{ .Job.Status }}">Status</dt>
<dd class="job-status job-{{ .Job.Status }}">{{ .Job.Status }}</dd>
<dt class="job-triggers">Triggers</dt>
<dd class="job-triggers">{{ template "triggers.html.tmpl" .Job }}</dd>
<dt class="job-command">Command</dt>
<dd class="job-command"><tt>{{ .Job.Command }}</tt></dd>
</dl>
</section>
<section>
<h2>Artifacts</h2>
{{- if .Status.Finished }}
<p>TODO</p>
{{- else }}
<p>Artifacts are not available until the job has finished.</p>
{{- end }}
</section>
<section>
<h2>Log</h2>
{{- if .Status.HasLog }}
<iframe src="log.txt"></iframe>
{{- else }}
<p>There is no log because the job has not started yet.</p>
{{- end }}
</section>
{{- end }}
{{- template "page.html.tmpl" . }}