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 / tasks.html.j2
Size: Mime:
{% extends "_layout.html.j2" %}

{% block body %}
<table class="table table-striped table-sm mb-0">
    <thead>
        <tr>
            <th>Name</th>
        </tr>
    </thead>
    <tbody>
{% for prefix, task in tasks %}
        <tr>
            <td><pre class="mb-0">{{ prefix }}{{ task.name|e }}</pre></td>
        </tr>
{% endfor %}
    </tbody>
    <tfoot>
        <tr>
            <td><b>{{ tasks|length }}</b> active tasks(s).</td>
        </tr>
    </tfoot>
</table>
{% endblock %}