WebHost: Add a yaml checker

This commit is contained in:
Fabian Dill
2020-07-27 04:05:42 +02:00
parent 89cea382ea
commit 63cbdb9449
5 changed files with 112 additions and 9 deletions

View File

@@ -0,0 +1,12 @@
{% extends 'layout.html' %}
{% block head %}
{{ super() }}
<title>Upload Mystery YAML</title>
{% endblock %}
{% block body %}
{% for filename, resulttext in results.items() %}
<span>{{ filename }}: {{ resulttext }}</span><br>
{% endfor %}
{% endblock %}