view themes/bulma/worker.mustache @ 71:ef8f9c986080

scid: fix worker with . in their names
author David Demelier <markand@malikania.fr>
date Tue, 24 Jan 2023 10:04:47 +0100
parents bc617784ec97
children 38bdcfb3d4f7
line wrap: on
line source

				<h1 class="title">Worker information</h1>
				<div class="columns">
					<div class="column is-1">
						<strong>Name</strong>
					</div>
					<div class="column">
						{{name}}
					</div>
				</div>
				<div class="columns">
					<div class="column is-1">
						<strong>Description</strong>
					</div>
					<div class="column">
						{{desc}}
					</div>
				</div>

				<h1 class="title">Recent jobs from this worker</h1>

				<table class="table jobresult-table">
					<thead>
						<tr>
							<th>job</th>
							<th>status</th>
						</tr>
					</thead>
					{{#jobresults}}
					<tr>
						<td><a href="/jobresults/{{id}}">{{id}}</a></td>
						<td><span class="tag {{textcolor}} is-light">{{status}}</span></td>
					</tr>
					{{/jobresults}}
				</table>