Archipelago/WebHostLib/templates/checkResult.html

34 lines
1.1 KiB
HTML
Raw Normal View History

{% extends 'autotablepage.html' %}
{% block head %}
{{ super() }}
<title>Mystery YAML Test Roll Results</title>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename="styles/checkResult.css") }}" />
{% endblock %}
{% block body %}
2022-04-05 05:14:30 +00:00
{% include 'header/oceanIslandHeader.html' %}
<div id="check-result-wrapper">
<div id="check-result" class="grass-island">
<h1>Verification Results</h1>
<p>The results of your requested file check are below.</p>
<table class="table autodatatable">
<thead>
<tr>
<th>File</th>
<th>Result</th>
</tr>
</thead>
<tbody>
{% for filename, resulttext in results.items() %}
<tr>
<td>{{ filename }}</td>
<td>{{ "Valid" if resulttext == True else resulttext }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
{% endblock %}