Files
web_management/flaskapp/templates/index.html
2017-07-26 02:08:21 +02:00

59 lines
1.3 KiB
HTML

<!-- -*- jinja2 -*- -->
<html>
<head>
<title>{{title}}</title>
<script src="static/jquery-3.2.0.min.js" ></script>
<link rel="stylesheet" href="static/bootstrap/css/bootstrap.min.css"/>
<script src="static/bootstrap/js/bootstrap.min.js" ></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<h1>{{title}}</h1>
{% if vers == 1 %}
<ul>
{% for k in keys %}
<li>
<a href="{{k}}">{{k}}</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% if vers == 2 %}
<ul class="list-unstyled">
{% for k in keys %}
<li>
{% if "cmd" in cmds[k] %}
<a href="{{k}}">
{% endif %}
<h5>
{% if "title" in cmds[k] %} {{cmds[k]["title"] }} {% else %} {{k}} {% endif %}
</h5>
{% if "desc" in cmds[k] %}
<p>
{{ cmds[k].desc }}
</p>
{% endif %}
{% if "cmd" in cmds[k] %}
<pre>{{ cmds[k].cmd }}</pre>
{% else %}
{% if "subcmds" in cmds[k] %}
{% endif %}
{% endif %}
{% if "cmd" in cmds[k] %}
</a>
{% endif %}
</li>
{% endfor %}
</ul>
{% endif %}
<div style="white-space: pre-wrap;font:Courier, monospace; font-size:small; width:50em;background:#DDF">{{out.decode('utf-8')}}</div>
</div>
</div>
</div>
</body>