{% extends "base.html" %} {% block content %}
{% if is_empty %}

No commands defined.

{% else %}
{% for c in items %}
{% include "icons/cmd.svg" %}
/{{ c.name }}{% if not c.managed %} foreign{% endif %}
{{ c.desc }}
{% endfor %}
{% endif %}
{% endblock %}