{% extends 'generic/_base.html' %} {% load helpers %} {% load i18n %} {% block title %}{% trans "Connection Backends" %}{% endblock %} {% block subtitle %}
{% trans "Installed drivers and package status" %}
{% endblock %} {% block content %}
{% trans "Back to Settings" %}
{% csrf_token %}
{% if any_missing %}
{% trans "Driver restart required after install" %}
{% trans "After installing a driver, click Restart Workers above so the orchestrator worker process loads the new package. Running a workflow before restarting will fail." %}
{% endif %}

{% trans "Connection Backends" %}

{% for item in driver_info %} {% endfor %}
{% trans "Driver" %} {% trans "Status" %} {% trans "Version" %} {% trans "Actions" %}
{{ item.driver }} {% if item.ok %} {% trans "Installed" %} {% else %} {% trans "Missing" %} {% endif %} {% if item.version %} {{ item.version }} {% else %} {% endif %} {% if item.uninstallable %} {% if item.ok %} {% else %}
{% csrf_token %}
{% endif %} {% else %} {% endif %}
{% endblock content %} {% block modals %} {% endblock modals %} {% block javascript %} {{ block.super }} {% endblock javascript %}