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

{% import "_tags.html.j2" as tags %}

{% block body %}
<table class="table table-hover table-striped table-sm mb-0"">
    <thead>
        <tr>
            <th></th>
            <th>Name</th>
            <th>Version</th>
            <th>Description</th>
            <th></th>
        </tr>
    </thead>
    <tbody>
{% for extension in extensions %}
        <tr style="cursor: pointer; {{ "" if true or extension.loaded else "opacity: 0.5" }}"
            onclick="window.location.href='{{ url_for('.show_extension_details', name=extension.name) }}'">
            <td class="align-baseline text-right" style="width: 24px">
                {% if extension.restart_requested %}
                <span class="text-primary" data-feather="refresh-cw"></span>
                {% elif extension.loaded %}
                <span class="text-success" data-feather="check"></span>
                {% else %}
                <span class="text-danger" data-feather="x"></span>
                {% endif %}
            </td>
            <td class="align-baseline">
                <pre class="mb-0">{{ prefix }}{{ extension.name }}</pre>
            </td>
            <td class="align-baseline">
                {{ extension.version or "" }}
            </td>
            <td class="align-baseline">
                {{ extension.description }}
                {{ tags.inline_list(extension.tags) }}
            </td>
        </tr>
{% endfor %}
    </tbody>
</table>
{% endblock %}