{{ _("Cogs") }} ({{ loaded_cogs_number }} / {{ cogs_number }} {{ _("loaded")}})

{{ cogs_form.hidden_tag() }} {% for cog_form in cogs_form.cogs.default %}
{{ cog_form.hidden_tag() }}
{{ cog_form.loaded(class="form-check-input ms-0", type="checkbox") }}
{% endfor %}
{{ cogs_form.submit(class="btn mb-0 bg-gradient-" + variables["meta"]["color"] + " btn-md w-100 my-4") }}
{% if downloader_loaded %}

{{ _("Downloader") }}

{{ _("Loading...") }}

{% else %}

{{ _("The Downloader cog is not loaded.") }}

{% endif %}

{{ _("Slash") }} ({{ application_commands_number }} {% if application_commands_number != 1 %}{{ _("application commands") }}{% else %}{{ _("application command") }}{% endif %})

{{ sync_application_commands_form.hidden_tag() }} {{ sync_application_commands_form.submit(class="btn mb-0 bg-gradient-" + variables["meta"]["color"]) }}
{% if application_commands_form %}
{{ application_commands_form.hidden_tag() }} {% for application_command_form in application_commands_form.application_commands.default %} {% if (loop.index0 == 0 or application_command_form.module.data != application_commands_form.application_commands.default[loop.index0 - 1].module.data) %} {% if loop.index0 != 0 %}

{% endif %}

{{ application_command_form.module.data }}

{% if application_command_form.module.data != "(unknown)" %}   {% endif %}
{% endif %}
{{ application_command_form.hidden_tag() }}
{{ application_command_form.enabled(class="form-check-input ms-0", type="checkbox") }}
{% endfor %}
{{ application_commands_form.submit(class="btn mb-0 bg-gradient-" + variables["meta"]["color"] + " btn-md w-100 my-4") }}
{% else %}

{{ _("No application commands found.") }}

{% endif %}