25 lines
777 B
HTML
25 lines
777 B
HTML
{% extends "base.html" %}
|
|
{% block body %}
|
|
<form action="/start" method="post">
|
|
<div id="data"> {{logs}}</div>
|
|
<ul>
|
|
{% for log in logs %}
|
|
<li>
|
|
<input type="checkbox" name="logs" value="{{log['@id']}}">
|
|
{{log.start_date}}: {{log.player_group_name}}
|
|
</li>
|
|
<!--{{log}}-->
|
|
{% endfor %}
|
|
</ul>
|
|
<!--input type="checkbox" id="safety"><label for="safety">Confirm selection</label-->
|
|
<input type="text" id="name" maxlength="128" placeholder="name" name="name"/><br>
|
|
<select name="config">
|
|
{% for config in configs %}
|
|
<option>{{config}}</option>
|
|
{% endfor %}
|
|
</select>
|
|
<input type="submit">
|
|
|
|
</form>
|
|
<a href="/results">show analysis progress/results</a>
|
|
{% endblock %} |