Files
docker_flask/templates/top.html
2018-03-09 10:33:19 +01:00

28 lines
642 B
HTML

{% extends "layout.html" %}
{% block body %}
<h1><a href="/">Dashboard</a> &raquo; {{ client_name }} &raquo; <a href="/{{ client_name }}/containers">Containers</a> &raquo; {{ container.name }}
processes</h1>
<input type="text" class="search_table" placeholder="search">
<table>
<thead>
<tr>
{% for header in top['Titles'] %}
<th>{{ header }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for processes in top['Processes'] %}
<tr>
{% for process in processes %}
<td>{{ process }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}