ScriptsManager
Dashboard
{% if script_group %}
{{ script_group.display_name }}
{% endif %}
{{ current_user.language.upper() if current_user.is_authenticated and current_user.language else 'EN' }}
🇺🇸 English
🇪🇸 Español
🇮🇹 Italiano
🇫🇷 Français
{{ current_user.username }}
Settings
Logout
{% 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 %}
Refresh
{% if script_group.conda_env %}
{{ script_group.conda_env }}
{% endif %}
Active Project
Change Project
New 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 %}
{{ param.display_name or param.name }}
{% if param.type == 'text' %}
{% elif param.type == 'number' %}
{% elif param.type == 'select' %}
{% for option in param.options %}
{{ option.label }}
{% endfor %}
{% elif param.type == 'checkbox' %}
{{ param.description or param.display_name }}
{% endif %} {% if param.description and param.type != 'checkbox' %}
{{ param.description }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %} {% if not script_group.scripts %}
No scripts found in this group.
{% endif %}
Script Logs
Edit Script
Display Name
Name shown in the interface
Short Description
Brief description shown on the card
Long Description (Markdown)
EN
Detailed description in Markdown format. Language-specific versions supported.
You can use Markdown syntax for formatting. If a description doesn't exist in the selected language, the English version will be shown as fallback.
{% else %}
Script group not found.
Back to Dashboard
{% endif %}