{% extends "base.html" %} {% block title %}Commands{% endblock %} {% block actions %}
Developer Author Support
{% endblock %} {% block content %} {% if commands %}
{% for c in commands %}

{{ c.name }}

{% if c.domain %}{{ c.domain }}{% endif %}
{% if c.description %}

{{ c.description }}

{% endif %} {# Inline the schema as JSON so the JS doesn't need a fetch. tojson + an HTML attribute don't compose (tojson returns Markup-safe content, which bypasses |e and leaves raw `"` that breaks the attribute). A
{% endfor %}
{% else %}

No commands available for the {{ profile }} profile.

{% endif %} {% endblock %} {% block scripts %} {% endblock %}