2020-09-24 20:19:01 +02:00
|
|
|
<!DOCTYPE html>
|
2020-09-24 17:09:02 +02:00
|
|
|
<html>
|
2020-09-24 20:19:01 +02:00
|
|
|
<head>
|
|
|
|
<title>Kebab Collection</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2020-09-24 17:09:02 +02:00
|
|
|
<h1>Current vertex count: {{ best_result|length }}</h1>
|
|
|
|
<h2>Total results submitted: {{ result_count }}</h2>
|
|
|
|
|
|
|
|
<h2>Current best solution</h2>
|
|
|
|
<pre>
|
|
|
|
{% for id in best_result %}
|
|
|
|
{{- id }}
|
|
|
|
{% endfor %}
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<h2>Workers:</h2>
|
|
|
|
<ul>
|
|
|
|
{% for worker in workers %}
|
|
|
|
<li>{{ worker.ipaddr }} - {{ worker.last_seen }}</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
2020-09-24 20:19:01 +02:00
|
|
|
</body>
|
2020-09-24 17:09:02 +02:00
|
|
|
</html>
|