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

Catalog

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 %}
catalog_list tool unavailable or returned no results.
{% endif %}
{% endblock %}