33 lines
916 B
HTML
33 lines
916 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<link rel="stylesheet" href="style.css">
|
|
<script>"jquery-3.6.0.min.js"</script>
|
|
</head>
|
|
<body>
|
|
<h1>{{ title }}</h1>
|
|
{% for grade_file in grade_files %}
|
|
<h2>
|
|
{{ grade_file }}
|
|
<form method="post">
|
|
{% for key, value in grade_files[grade_file].items() %}
|
|
<!-- /*<input type="submit" name={{ index }} value={{ index }}>*/ -->
|
|
<input type="checkbox" name={{ key }} value={{ key }} {{ value }}>
|
|
<label for={{ key0 }}>{{ key }}</label>
|
|
{% endfor %}
|
|
<input type="submit">
|
|
</form>
|
|
</h2>
|
|
{% endfor %}
|
|
<section class="row">
|
|
{% for image in plots %}
|
|
<section class="col-md-4 col-sm-6">
|
|
<img src="{{ url_for('static', filename='plots/' + image) }}" alt=img/>
|
|
<h3>{{ image }}</h3>
|
|
</section>
|
|
{% endfor %}
|
|
</section>
|
|
</body>
|
|
|
|
</html> |