You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
538 B
24 lines
538 B
5 years ago
|
<html>
|
||
|
<head>
|
||
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
<title>Návrat k předchozí verzi</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
{% if success %}
|
||
|
<p class="success"> Verze úspěšně změněna</p>
|
||
|
{% endif %}
|
||
|
<h1>Vyberte stav</h1>
|
||
|
<form method="post" action="">
|
||
|
<ul>
|
||
|
{% for l in log %}
|
||
|
<li>
|
||
|
<input type="radio" name="version" id="version_{{loop.index0}}" value="{{loop.index0}}">
|
||
|
<label for="version_{{loop.index0}}">{{l.times[l.round]}}</label>
|
||
|
</li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
<input type="submit" value="Odeslat">
|
||
|
</form>
|
||
|
</body>
|
||
|
</html>
|