{% extends "base.html" %} {% block title %}{{ t.dashboard }} - {{ t.app_title }}{% endblock %} {% block content %}

{{ t.dashboard }}

{{ t.script_groups }}

{{ script_groups|length }}

{{ t.projects }}

{{ user_projects|length }}

User Level
{{ t.user_level[current_user.user_level] }}
{{ t.status }}
Loading...
Active Project
Loading active project...

{{ t.script_groups }}

{% if script_groups %}
{% for group in script_groups %}
{{ group.name }}
{{ 'Active' if group.is_active else 'Inactive' }}

{% if group.description %} {% set desc_dict = group.description | fromjson %} {% if desc_dict is mapping %} {{ desc_dict.get(current_lang, desc_dict.get('en', 'No description')) }} {% else %} {{ group.description }} {% endif %} {% else %} No description available {% endif %}

Required Level: {{ t.user_level.get(group.required_level, group.required_level) }}
{% if group.conda_environment %}
Environment: {{ group.conda_environment }}
{% endif %}
Scripts: Loading...
{% endfor %}
{% else %}

No Script Groups Found

Add script directories to app/backend/script_groups/ to get started.

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