{% if script_group %}

{{ script_group.display_name }}

{% if script_group.get_description(user_language or 'en') %}

{{ script_group.get_description(user_language or 'en') }}

{% endif %}
{% if script_group.conda_env %} {{ script_group.conda_env }} {% endif %}
Active Project
Loading project...
{% for script in script_group.scripts %}
{{ script.display_name }}
{{ script.status or 'idle' }}
{% if script.description %}

{{ script.description }}

{% endif %} {% if script.parameters %}
{% for param in script.parameters %}
{% if param.type == 'text' %} {% elif param.type == 'number' %} {% elif param.type == 'select' %} {% elif param.type == 'checkbox' %}
{% endif %} {% if param.description and param.type != 'checkbox' %} {{ param.description }} {% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% if not script_group.scripts %}
{% endif %}
{% else %}
{% endif %}