view themes/bulma/workers.mustache @ 54:85c59fbf1407

scid: add commands to retrieve API key
author David Demelier <markand@malikania.fr>
date Wed, 17 Aug 2022 11:07:08 +0200
parents e8f24896b484
children
line wrap: on
line source

				<h1 class="title">Available workers</h1>

				<table class="table">
					<thead>
						<tr>
							<th>Name</th>
							<th>Description</th>
						</tr>
					</thead>
					<tbody>
						{{#workers}}
						<tr>
							<td><a href="/workers/{{name}}">{{name}}</a></td>
							<td>{{desc}}</td>
						</tr>
						{{/workers}}
					</tbody>
				</table>