Files
Grinch-AP/WebHostLib/templates/checkresult.html

13 lines
318 B
HTML
Raw Normal View History

2020-07-27 04:05:42 +02:00
{% extends 'layout.html' %}
{% block head %}
{{ super() }}
<title>Upload Mystery YAML</title>
{% endblock %}
{% block body %}
2020-08-02 22:11:52 +02:00
{% for filename, resulttext in results.items() %}
<span>{{ filename }}: {{ "Looks ok" if resulttext == True else resulttext }}</span><br>
2020-07-27 04:05:42 +02:00
{% endfor %}
{% endblock %}