13 lines
323 B
HTML
13 lines
323 B
HTML
{% extends 'pageWrapper.html' %}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
<title>Upload Mystery YAML</title>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{% for filename, resulttext in results.items() %}
|
|
<span>{{ filename }}: {{ "Looks ok" if resulttext == True else resulttext }}</span><br>
|
|
{% endfor %}
|
|
{% endblock %}
|