Initial commit of docker flask.
This commit is contained in:
28
templates/top.html
Normal file
28
templates/top.html
Normal file
@@ -0,0 +1,28 @@
|
||||
{% extends "layout.html" %}
|
||||
{% block body %}
|
||||
|
||||
<h1><a href="/">Dashboard</a> » {{ client_name }} » <a href="/{{ client_name }}/containers">Containers</a> » {{ 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 %}
|
||||
Reference in New Issue
Block a user