{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}Extensions{% endblock %} {% block nav_extensions %}btn-active{% endblock %} {% block content %}

Extensions

List Capabilities
{% if extensions and extensions.items %}
{% for ext in extensions.items %}
{{ ext.name | default(value="?") }} {% if ext.category %} {{ ext.category }} {% endif %}
{% if ext.description %}

{{ ext.description }}

{% endif %} {% if ext.version %} v{{ ext.version }} {% endif %}
{% endfor %}
{% else %}
extension_list tool unavailable or returned no results.
{% endif %}
{% endblock %}