23 lines
520 B
Handlebars
23 lines
520 B
Handlebars
<div>
|
|
<div>Job: {{jobName}}</div>
|
|
<div style='display: flex; flex-direction: row;'>
|
|
<div>
|
|
<h2>Complete</h2>
|
|
<ol>
|
|
{{#each completes as |item|}}
|
|
<li>{{name}}: {{count}}</li>
|
|
{{/each}}
|
|
</ol>
|
|
</div>
|
|
<div>
|
|
<h2>Claims</h2>
|
|
<ol>
|
|
{{#each claims as |item|}}
|
|
<li>{{name}}: {{count}}</li>
|
|
{{/each}}
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<i>This page will auto-refresh every 10 seconds.</i>
|
|
<meta http-equiv='refresh' content='10' /> |