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    
distributed / distributed / widgets / templates / who_has.html.j2
Size: Mime:
<table>
    <tr>
        <th>Key</th>
        <th>Copies</th>
        <th>Workers</th>
    </tr>

    {% for title, keys in who_has.items() %}
    <tr>
        <td>{{ title }}</td>
        <td>{{ keys | length }}</td>
        <td>{{ keys | join(", ") }}</td>
    </tr>
    {% endfor %}
</table>