Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
flockwave-server / src / flockwave / server / ext / webui / templates / threads.html.j2
Size: Mime:
{% 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 %}