Files
web_management/templates/index.html
Andreas Stephanides 179381fa8c configuration added
2017-04-18 11:08:09 +02:00

20 lines
379 B
HTML

<html>
<head>
<title>{{title}}</title>
<script src="static/jquery-3.2.0.min.js" ></script>
</head>
<body>
<h1>{{title}}</h1>
<ul>
{% for k in keys %}
<li>
<a href="{{k}}">{{k}}</a>
</li>
{% endfor %}
</ul>
<div style="white-space: pre-wrap;font:Courier, monospace; font-size:small; width:80em;background:#DDF">{{out.decode('utf-8')}}</div>
</body>