{% extends "_base.html" %} {% block title %}Commands{% endblock %} {% block head %} {% endblock %} {% block body %}
Add
{% for command in commands %}
{{ command.name }} {% if !command.aliases.is_empty() %} {{ command.aliases.join(", ") }} {% endif %}

            {%- match command.executor -%}
                {%- when CommandExecutor::Text with (t) -%}
                    {{ t }}
                {%- when CommandExecutor::Rhai with (t) -%}
                    {{ t }}
            {%- endmatch -%}
    
{% endfor %} {% endblock %}