Repository URL to install this package:
|
Version:
2.32.5 ▾
|
{% extends "_layout.html.j2" %}
{% block body %}
<table class="table table-striped table-sm mb-0">
<thead>
<tr>
<th>Ident</th>
<th>Name</th>
<th>Daemon?</th>
</tr>
</thead>
<tbody>
{% for thread in threads %}
<tr>
<td>{{ thread.ident }}</td>
<td>{{ thread.name|e }}</td>
<td>{% if thread.daemon %}<span class="glyphicon glyphicon-ok text-success"></span>{% else %}<span class="glyphicon glyphicon-remove text-danger"></span>{% endif %}</td>
</tr>
{% endfor %}
</tbody>
<tfoot>
<tr>
<td><b>{{ threads|length }}</b> running thread(s).</td>
</tr>
</tfoot>
</table>
{% endblock %}