summaryrefslogtreecommitdiff
path: root/web/kpov_judge/templates/params.html
blob: 0648f66552f473c477731f4ea9cc814834842f4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<html>
<head>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<h1>
{{task_id}}
</h1>
<div>
<h2>Parametri</h2>
<form action="" method="post">
{% for k, v in params.items() %}
<div><span class="hover">{{k}}: <div class="tooltip">{{params_meta[k]['descriptions']['si']}}</div></span>
{% if params_meta[k]["w"] %}
<input type=text name="{{k}}" value="{{v}}" />
{% else %}
{{v}}
{% endif %}</div>
{% endfor %}
<p><input type=submit value="Submit"/></p>
</form>
</div>
</body>
</html>